/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Kullanıcı Tema (Modern) */
body.user-page {
    background: #f3f5f9;
    color: #0f172a;
}

body.user-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

body.user-page .header {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 18px 24px;
    box-shadow: none;
    margin-bottom: 24px;
}

body.user-page .logo i {
    color: #6366f1;
}

body.user-page .logo h1 {
    font-size: 22px;
    color: #0f172a;
}

body.user-page .nav a {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s ease;
}

body.user-page .nav a:hover,
body.user-page .nav a.active {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
}

body.user-page .main-content {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 32px;
    box-shadow: none;
}

body.user-page .page-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

body.user-page .page-title {
    font-size: 24px;
    color: #0f172a;
    font-weight: 600;
}

body.user-page .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

body.user-page .card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: none;
    transition: all 0.2s ease;
}

body.user-page .card:hover {
    border-color: #cbd5e1;
}

body.user-page .card-title {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

body.user-page .card-value {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

body.user-page table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #e5e7eb;
}

body.user-page table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    border-bottom: 2px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

body.user-page table th:last-child {
    border-right: none;
}

body.user-page table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    color: #475569;
    font-size: 14px;
}

body.user-page table td:last-child {
    border-right: none;
}

body.user-page table tbody tr {
    transition: all 0.15s ease;
}

body.user-page table tbody tr:hover {
    background: #f8fafc;
}

body.user-page table tbody tr:nth-child(even) {
    background: #fafbfc;
}

body.user-page .table-container {
    border: 1px solid #e5e7eb;
    overflow: hidden;
    background: #ffffff;
}

body.user-page .btn {
    border-radius: 0;
    box-shadow: none;
}

body.user-page .form-group input,
body.user-page .form-group select,
body.user-page .form-group textarea {
    border-radius: 0;
    box-shadow: none;
}

body.user-page .form-group input:focus,
body.user-page .form-group select:focus,
body.user-page .form-group textarea:focus {
    box-shadow: none;
    border-color: #6366f1;
}

/* Kullanıcı Giriş Sayfası */
body.user-page .login-container {
    background: #f3f5f9;
}

body.user-page .login-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

body.user-page .login-box h2 {
    color: #0f172a;
}

body.user-page .login-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Ana Sayfa - Randevu Alma Formu */
body.user-page .appointment-section {
    width: 100%;
}

body.user-page .section-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

body.user-page .section-header h2 {
    color: #0f172a;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

body.user-page .section-header h2 i {
    color: #6366f1;
}

body.user-page .subtitle {
    color: #64748b;
    font-size: 15px;
}

body.user-page .wizard-steps {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: none;
}

body.user-page .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

body.user-page .step-number {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: #e2e8f0;
    color: #64748b;
    border: 2px solid #cbd5e1;
    box-shadow: none;
}

body.user-page .step-item.active .step-number {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
    box-shadow: none;
}

body.user-page .step-item.completed .step-number {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

body.user-page .step-label {
    color: #475569;
    font-weight: 500;
}

body.user-page .step-item.active .step-label {
    color: #6366f1;
    font-weight: 600;
}

body.user-page .step-line {
    background: #cbd5e1;
}

body.user-page .step-item.active ~ .step-line,
body.user-page .step-item.completed ~ .step-line {
    background: #10b981;
}

body.user-page .form-section {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: none;
}

body.user-page .form-section h3 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #6366f1;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.user-page .form-section h3 i {
    color: #6366f1;
}

body.user-page .logged-in-info {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 16px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: none;
}

body.user-page .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

body.user-page .time-slot {
    border: 1px solid #cbd5e1;
    border-radius: 0;
    padding: 14px 12px;
    background: #ffffff;
    transition: all 0.2s ease;
    box-shadow: none;
}

body.user-page .time-slot.available {
    border-color: #10b981;
    background: #d1fae5;
}

body.user-page .time-slot.available:hover {
    background: #a7f3d0;
    border-color: #059669;
    transform: translateY(-2px);
}

body.user-page .time-slot.booked {
    border-color: #ef4444;
    background: #fee2e2;
    opacity: 0.7;
}

body.user-page .time-slot.selected {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
    box-shadow: none;
}

body.user-page .result-message {
    border-radius: 0;
    box-shadow: none;
}

body.user-page .result-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

body.user-page .result-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Kullanıcı Sayfaları Responsive */
@media (max-width: 768px) {
    body.user-page .container {
        padding: 16px;
    }

    body.user-page .header {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
    }

    body.user-page .nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    body.user-page .main-content {
        padding: 20px;
    }

    body.user-page .cards {
        grid-template-columns: 1fr;
    }

    body.user-page .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* Admin Tema (Yeni Nesil) */
body.admin-page {
    background: #f3f5f9;
    color: #0f172a;
}

body.admin-page .container {
    max-width: none;
    width: 100%;
    padding: 24px;
    min-height: 100vh;
}

body.admin-page .header {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 18px 24px;
    box-shadow: none;
}

body.admin-page .logo i {
    color: #6366f1;
}

body.admin-page .logo h1 {
    font-size: 22px;
}

body.admin-page .nav a {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    font-weight: 600;
}

body.admin-page .nav a:hover,
body.admin-page .nav a.active {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
}

body.admin-page .btn,
body.admin-page input,
body.admin-page select,
body.admin-page textarea,
body.admin-page .badge,
body.admin-page .alert,
body.admin-page .table-container,
body.admin-page .dataTables_filter input,
body.admin-page .dataTables_length select,
body.admin-page .dataTables_paginate .paginate_button {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo i {
    font-size: 32px;
    color: var(--secondary-color);
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: var(--dark-text);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.nav a:hover,
.nav a.active {
    background: var(--secondary-color);
    color: white;
}

/* Main Content */
.main-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.appointment-section {
    position: relative;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header h2 i {
    color: var(--secondary-color);
}

.subtitle {
    color: var(--light-text);
    font-size: 16px;
    margin-top: 10px;
}

.form-section {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.form-section h3 i {
    color: var(--secondary-color);
}

.appointment-section h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 28px;
}

.subtitle {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 16px;
}

/* Form Stilleri */
.appointment-form {
    width: 100%;
    max-width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
}

.form-group label i {
    color: var(--secondary-color);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Butonlar */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

/* Form içindeki butonlar - input/select ile aynı yükseklik */
form .btn,
form button.btn {
    height: auto;
    padding: 12px 20px;
    border: 2px solid transparent;
    align-self: flex-start;
}

form .btn-primary {
    border-color: var(--secondary-color);
}

form .btn-secondary {
    border-color: #cbd5e1;
    background: #ffffff;
    color: #475569;
}

form .btn-secondary:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

/* Action Butonları (İşlemler Kolonu) */
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: 0;
}

.btn-action:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #334155;
    transform: translateY(-1px);
}

.btn-action i {
    margin: 0;
}

/* Action Buton Renkleri */
.btn-action.btn-view {
    border-color: #cbd5e1;
    color: #475569;
}

.btn-action.btn-view:hover {
    background: #e0f2fe;
    border-color: #0ea5e9;
    color: #0369a1;
}

.btn-action.btn-edit {
    border-color: #cbd5e1;
    color: #475569;
}

.btn-action.btn-edit:hover {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #d97706;
}

.btn-action.btn-delete {
    border-color: #cbd5e1;
    color: #475569;
}

.btn-action.btn-delete:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #dc2626;
}

.btn-action.btn-success {
    border-color: #cbd5e1;
    color: #475569;
}

.btn-action.btn-success:hover {
    background: #d1fae5;
    border-color: #10b981;
    color: #059669;
}

.btn-action.btn-warning {
    border-color: #cbd5e1;
    color: #475569;
}

.btn-action.btn-warning:hover {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #d97706;
}

.btn-action.btn-info {
    border-color: #cbd5e1;
    color: #475569;
}

.btn-action.btn-info:hover {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #2563eb;
}

/* Action Buton Grubu */
.action-buttons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    width: 100%;
    justify-content: center;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.form-note {
    margin-top: 15px;
    color: var(--light-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Wizard Stilleri */
.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    border: 3px solid var(--border-color);
}

.step-item.active .step-number {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 5px rgba(52, 152, 219, 0.2);
}

.step-item.completed .step-number {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.step-item.completed .step-number::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.step-label {
    font-weight: 600;
    color: var(--dark-text);
    text-align: center;
    font-size: 14px;
}

.step-item.active .step-label {
    color: var(--secondary-color);
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--border-color);
    margin: 0 20px;
    max-width: 150px;
}

.step-item.active ~ .step-line,
.step-item.completed ~ .step-line {
    background: var(--success-color);
}

.wizard-form {
    position: relative;
    min-height: 400px;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.btn-next,
.btn-prev {
    min-width: 120px;
}

.btn-secondary {
    background: var(--light-text);
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-secondary {
    background: var(--light-text);
    color: white;
}

/* Result Message */
.result-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.result-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.result-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    text-align: center;
    color: white;
    padding: 20px;
}

/* Dashboard Stilleri */
.dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    min-height: calc(100vh - 100px);
}

body.admin-page .dashboard {
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: stretch;
    min-height: calc(100vh - 140px);
}

.sidebar {
    background: var(--primary-color);
    padding: 30px 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: fit-content;
}

body.admin-page .sidebar {
    background: #0f172a;
    padding: 20px;
    position: sticky;
    top: 24px;
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.sidebar-menu {
    list-style: none;
}

body.admin-page .sidebar-menu {
    display: grid;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}

.sidebar-menu li {
    margin-bottom: 5px;
    width: 100%;
    box-sizing: border-box;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

body.admin-page .sidebar-menu a {
    padding: 12px 16px;
    color: #e2e8f0;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(255,255,255,0.1);
    border-left: 4px solid var(--secondary-color);
}

body.admin-page .sidebar-menu a:hover,
body.admin-page .sidebar-menu a.active {
    background: rgba(99, 102, 241, 0.18);
    border-left: none;
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.4);
    box-sizing: border-box;
}

.content-area {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

body.admin-page .content-area {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 28px;
    box-shadow: none;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

body.admin-page .page-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
}

.page-title {
    font-size: 28px;
    color: var(--primary-color);
}

/* Tablo Stilleri */
.table-container {
    overflow-x: auto;
}

body.admin-page .table-container {
    border: 1px solid #e5e7eb;
    overflow: hidden;
    background: #ffffff;
}

body.admin-page .table-container .dataTables_wrapper {
    border: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

body.admin-page table {
    margin-top: 0;
    border-collapse: separate;
    border-spacing: 0;
}

body.admin-page table tbody,
body.admin-page table td,
body.admin-page table tfoot,
body.admin-page table th,
body.admin-page table thead,
body.admin-page table tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    vertical-align: middle;
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    vertical-align: middle;
}

body.admin-page tbody,
body.admin-page td,
body.admin-page tfoot,
body.admin-page th,
body.admin-page thead,
body.admin-page tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    vertical-align: middle;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

body.admin-page table th,
body.admin-page table td {
    border-bottom: 1px solid #e5e7eb;
}

table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--dark-text);
}

body.admin-page table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}

body.admin-page table tbody tr {
    transition: all 0.15s ease;
}

body.admin-page table tbody tr:hover {
    background: #f8fafc;
}

body.admin-page table tbody tr:nth-child(even) {
    background: #fafbfc;
}

/* DataTables (Admin) - Modern Tasarım */
body.admin-page .dataTables_wrapper {
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* DataTables Top Bar */
body.admin-page .dataTables_wrapper .dataTables_length,
body.admin-page .dataTables_wrapper .dataTables_filter {
    margin-bottom: 20px;
    padding: 16px 20px;
    background: transparent;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.admin-page .dataTables_wrapper .dataTables_length {
    float: left;
    width: auto !important;
    max-width: none !important;
    padding: 16px 0 16px 0 !important;
    min-width: auto !important;
}

body.admin-page #DataTables_Table_0_length,
body.admin-page [id*="DataTables_Table"][id*="_length"] {
    width: auto !important;
    max-width: none !important;
    padding: 16px 0 16px 0 !important;
    min-width: auto !important;
}

body.admin-page .dataTables_wrapper .dataTables_filter {
    float: right;
    text-align: right;
}

body.admin-page .dataTables_wrapper .dataTables_length label,
body.admin-page .dataTables_wrapper .dataTables_filter label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-weight: 500;
    color: #334155;
    font-size: 14px;
    white-space: nowrap;
}

body.admin-page .dataTables_wrapper .dataTables_length label > *,
body.admin-page .dataTables_wrapper .dataTables_filter label > * {
    flex-shrink: 0;
}

body.admin-page .dataTables_wrapper .dataTables_length select {
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 36px 8px 14px;
    outline: none;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    border-radius: 0;
    width: auto !important;
    min-width: 60px;
    max-width: 80px;
}

body.admin-page .dataTables_wrapper .dataTables_length select:hover {
    border-color: #94a3b8;
}

body.admin-page .dataTables_wrapper .dataTables_length select:focus {
    border-color: #6366f1;
    box-shadow: none;
}

body.admin-page .dataTables_wrapper .dataTables_filter input {
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 16px;
    outline: none;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    transition: all 0.2s ease;
    min-width: 250px;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 250px;
    border-radius: 0;
}

body.admin-page .dataTables_wrapper .dataTables_filter input:hover {
    border-color: #94a3b8;
}

body.admin-page .dataTables_wrapper .dataTables_filter input:focus {
    border-color: #6366f1;
    box-shadow: none;
}

/* DataTables Table Styling */
body.admin-page .dataTables_wrapper table.dataTable {
    border-collapse: separate;
    border-spacing: 0;
    width: 100% !important;
    margin: 0;
}

body.admin-page .dataTables_wrapper table.dataTable tbody,
body.admin-page .dataTables_wrapper table.dataTable td,
body.admin-page .dataTables_wrapper table.dataTable tfoot,
body.admin-page .dataTables_wrapper table.dataTable th,
body.admin-page .dataTables_wrapper table.dataTable thead,
body.admin-page .dataTables_wrapper table.dataTable tr {
    vertical-align: middle !important;
}

body.admin-page table.dataTable tbody,
body.admin-page table.dataTable td,
body.admin-page table.dataTable tfoot,
body.admin-page table.dataTable th,
body.admin-page table.dataTable thead,
body.admin-page table.dataTable tr {
    vertical-align: middle !important;
}

body.admin-page .table tbody,
body.admin-page .table td,
body.admin-page .table tfoot,
body.admin-page .table th,
body.admin-page .table thead,
body.admin-page .table tr {
    vertical-align: middle !important;
}

body.admin-page .table-bordered tbody td,
body.admin-page .table-bordered tbody th,
body.admin-page .table-bordered thead td,
body.admin-page .table-bordered thead th {
    vertical-align: middle !important;
}

body.admin-page .dt-responsive tbody td,
body.admin-page .dt-responsive tbody th,
body.admin-page .dt-responsive thead td,
body.admin-page .dt-responsive thead th {
    vertical-align: middle !important;
}

body.admin-page #appointmentsTable tbody td,
body.admin-page #appointmentsTable thead th,
body.admin-page #allAppointmentsTable tbody td,
body.admin-page #allAppointmentsTable thead th {
    vertical-align: middle !important;
}

body.admin-page .dataTables_wrapper table.dataTable thead th {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    padding: 14px 16px;
    border-bottom: 2px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    vertical-align: middle !important;
}

body.admin-page .dataTables_wrapper table.dataTable thead th:last-child {
    border-right: none;
}

body.admin-page .dataTables_wrapper table.dataTable thead th.sorting,
body.admin-page .dataTables_wrapper table.dataTable thead th.sorting_asc,
body.admin-page .dataTables_wrapper table.dataTable thead th.sorting_desc {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

body.admin-page .dataTables_wrapper table.dataTable thead th.sorting:after,
body.admin-page .dataTables_wrapper table.dataTable thead th.sorting_asc:after,
body.admin-page .dataTables_wrapper table.dataTable thead th.sorting_desc:after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

body.admin-page .dataTables_wrapper table.dataTable thead th.sorting:after {
    border-top: 6px solid #94a3b8;
    border-bottom: none;
}

body.admin-page .dataTables_wrapper table.dataTable thead th.sorting_asc:after {
    border-bottom: 6px solid #6366f1;
    border-top: none;
}

body.admin-page .dataTables_wrapper table.dataTable thead th.sorting_desc:after {
    border-top: 6px solid #6366f1;
    border-bottom: none;
}

body.admin-page .dataTables_wrapper table.dataTable tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    color: #334155;
    font-size: 14px;
    font-weight: 400;
    vertical-align: middle !important;
}

body.admin-page .dataTables_wrapper table.dataTable tbody td:last-child {
    border-right: none;
}

body.admin-page .dataTables_wrapper table.dataTable tbody tr {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

body.admin-page .dataTables_wrapper table.dataTable tbody tr:hover {
    background: linear-gradient(90deg, #eef2ff 0%, #f8fafc 100%);
    border-left-color: #6366f1;
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

body.admin-page .dataTables_wrapper table.dataTable tbody tr.even {
    background: #ffffff;
}

body.admin-page .dataTables_wrapper table.dataTable tbody tr.odd {
    background: #fafbfc;
}

body.admin-page .dataTables_wrapper table.dataTable tbody tr.selected {
    background: #eef2ff !important;
}

body.admin-page .dataTables_wrapper table.dataTable tbody tr.selected td {
    color: #4338ca;
}

/* DataTables Bottom Bar */
body.admin-page .dataTables_wrapper .dataTables_info {
    padding: 16px 20px;
    background: transparent;
    border-top: 1px solid #e5e7eb;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

body.admin-page .dataTables_wrapper .dataTables_paginate {
    padding: 16px 20px;
    background: transparent;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

body.admin-page .dataTables_wrapper .dataTables_paginate.paging_simple_numbers {
    background: transparent;
}

/* ID bazlı selector'lar için de arkaplan ve border-bottom kaldır */
body.admin-page #DataTables_Table_0_length,
body.admin-page #DataTables_Table_0_filter,
body.admin-page [id*="DataTables_Table"][id*="_length"],
body.admin-page [id*="DataTables_Table"][id*="_filter"] {
    background: transparent !important;
    border-bottom: none !important;
}

body.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 3px;
    background: #ffffff;
    color: #475569;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: 0;
}

body.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.15);
}

body.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    font-weight: 600;
}

body.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

body.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
body.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f1f5f9;
    color: #94a3b8;
    transform: none;
}

body.admin-page .dataTables_wrapper .dataTables_processing {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    color: #475569;
    font-weight: 500;
    padding: 12px 20px;
}

table tr:hover {
    background: var(--light-bg);
}

/* Badge Stilleri */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

/* Kartlar */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

body.admin-page .cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

body.admin-page .card {
    border: 1px solid #e5e7eb;
    border-left: 6px solid #6366f1;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.admin-page .card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.card-title {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

body.admin-page .card-title {
    letter-spacing: 0.08em;
}

.card-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--light-text);
}

/* Loading */
.loading {
    text-align: center;
    padding: 20px;
    color: var(--light-text);
}

/* Saat Seçimi Stilleri */
.time-slots-container {
    margin-top: 10px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.time-slot {
    padding: 15px 10px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    position: relative;
}

.time-slot.available {
    border-color: var(--success-color);
    background: #f0f9f4;
}

.time-slot.available:hover {
    background: #d4edda;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.time-slot.booked {
    border-color: var(--danger-color);
    background: #f8d7da;
    cursor: not-allowed;
    opacity: 0.7;
}

.time-slot.selected {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.time-slot i {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.time-slot.available i {
    color: var(--success-color);
}

.time-slot.booked i {
    color: var(--danger-color);
}

.time-slot.selected i {
    color: white;
}

.time-text {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.time-status {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.8;
}

.time-slot.selected .time-status {
    opacity: 1;
}

/* jQuery UI Datepicker Özelleştirme */
.ui-datepicker {
    font-family: inherit;
    font-size: 14px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.ui-datepicker-header {
    background: #6366f1;
    color: white;
    border-radius: 0;
    border-bottom: 1px solid #4f46e5;
}

.ui-datepicker-title {
    color: white;
    font-weight: 600;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
    border-radius: 0;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Datepicker Calendar Table - Genel tablo stillerini override et */
.ui-datepicker table.ui-datepicker-calendar,
.ui-datepicker-calendar {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    border: 1px solid #e2e8f0 !important;
}

.ui-datepicker table.ui-datepicker-calendar th,
.ui-datepicker-calendar th {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 10px 8px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0 !important;
    text-align: center !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
}

.ui-datepicker table.ui-datepicker-calendar td,
.ui-datepicker-calendar td {
    border: 1px solid #e5e7eb !important;
    padding: 0 !important;
    text-align: center !important;
    border-radius: 0 !important;
    width: 14.28% !important;
    border-bottom: 1px solid #e5e7eb !important;
    border-right: 1px solid #e5e7eb !important;
    background: transparent !important;
}

.ui-datepicker table.ui-datepicker-calendar td:last-child,
.ui-datepicker-calendar td:last-child {
    border-right: 1px solid #e5e7eb !important;
}

.ui-datepicker table.ui-datepicker-calendar td a,
.ui-datepicker-calendar td a {
    display: block !important;
    padding: 10px 8px !important;
    text-decoration: none !important;
    color: #475569 !important;
    border-radius: 0 !important;
    transition: all 0.15s ease !important;
    min-height: 36px !important;
    line-height: 16px !important;
    box-sizing: border-box !important;
    border: none !important;
    margin: 0 !important;
}

.ui-datepicker table.ui-datepicker-calendar td a:hover,
.ui-datepicker-calendar td a:hover {
    background: #f8fafc !important;
    color: #0f172a !important;
}

.ui-datepicker table.ui-datepicker-calendar .ui-state-active,
.ui-datepicker table.ui-datepicker-calendar .ui-state-active a,
.ui-datepicker-calendar .ui-state-active,
.ui-datepicker-calendar .ui-state-active a {
    background: #6366f1 !important;
    color: #ffffff !important;
    border-color: #6366f1 !important;
    font-weight: 600 !important;
}

.ui-datepicker table.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker table.ui-datepicker-calendar .ui-state-highlight a,
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-state-highlight a {
    background: #eef2ff !important;
    color: #4338ca !important;
    border-color: #c7d2fe !important;
    font-weight: 500 !important;
}

.ui-datepicker table.ui-datepicker-calendar .ui-state-disabled,
.ui-datepicker table.ui-datepicker-calendar .ui-state-disabled a,
.ui-datepicker-calendar .ui-state-disabled,
.ui-datepicker-calendar .ui-state-disabled a {
    color: #cbd5e1 !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
    background: #f8fafc !important;
}

.ui-datepicker table.ui-datepicker-calendar .ui-state-disabled:hover,
.ui-datepicker table.ui-datepicker-calendar .ui-state-disabled a:hover,
.ui-datepicker-calendar .ui-state-disabled:hover,
.ui-datepicker-calendar .ui-state-disabled a:hover {
    background: #f8fafc !important;
}

/* Kapalı günler - tıklanamaz */
.ui-datepicker-calendar .closed-day {
    background: #f8d7da !important;
    color: #721c24 !important;
    text-decoration: line-through !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    user-select: none !important;
}

.ui-datepicker-calendar .closed-day:hover {
    background: #f5c6cb !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

.ui-datepicker-calendar .ui-state-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* FullCalendar Özelleştirme */
.fc {
    font-family: inherit;
}

.fc-toolbar-title {
    font-size: 1.5em;
    font-weight: 600;
}

.fc-button {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
}

.fc-button:hover {
    background: #2980b9 !important;
}

.fc-button-active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.fc-daygrid-event {
    border-radius: 4px;
    padding: 2px 4px;
}

.fc-event-title {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    body.admin-page .dashboard {
        grid-template-columns: 1fr;
    }

    body.admin-page .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .dashboard {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .header {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .main-content {
        padding: 20px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cards {
        grid-template-columns: 1fr;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .time-slot {
        padding: 12px 8px;
    }
    
    .time-text {
        font-size: 14px;
    }
    
    /* Tablo responsive */
    .table-container {
        overflow-x: auto;
    }
    
    table {
        font-size: 14px;
    }
    
    table th,
    table td {
        padding: 8px;
        white-space: nowrap;
    }

    /* DataTables Responsive */
    body.admin-page .dataTables_wrapper .dataTables_length,
    body.admin-page .dataTables_wrapper .dataTables_filter {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
    }

    body.admin-page .dataTables_wrapper .dataTables_filter {
        float: none;
        width: 100%;
        text-align: left;
    }

    body.admin-page .dataTables_wrapper .dataTables_filter input {
        width: 100%;
    }

    body.admin-page .dataTables_wrapper .dataTables_paginate {
        text-align: center;
        padding: 12px;
    }

    body.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 6px 10px;
        font-size: 13px;
    }

    body.admin-page .dataTables_wrapper table.dataTable thead th,
    body.admin-page .dataTables_wrapper table.dataTable tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Filtre formu */
    form[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Takvim mobil */
    .fc-toolbar {
        flex-direction: column;
        gap: 10px;
    }
    
    .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
    }
    
    .calendar-view-toggle {
        flex-direction: column;
    }
    
    .calendar-legend {
        justify-content: center;
    }

    body.admin-page .sidebar {
        display: block;
        padding: 16px;
    }

    body.admin-page .sidebar-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.admin-page .sidebar-menu a {
        justify-content: center;
        text-align: center;
    }

    body.admin-page .content-area {
        padding: 20px;
    }

    body.admin-page .nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    body.admin-page .nav a {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .nav a {
        padding: 8px 15px;
        font-size: 14px;
    }

    body.admin-page .container {
        padding: 16px;
    }

    body.admin-page .sidebar-menu {
        grid-template-columns: 1fr;
    }
}

/* #status CSS kuralını kaldır */
#status {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    -webkit-transform: none !important;
    transform: none !important;
    margin: 0 !important;
}
