:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #f43f5e;
    --secondary-dark: #e11d48;
    --secondary-light: #fb7185;
    --success: #10b981;
    --success-light: #a7f3d0;
    --warning: #f59e0b;
    --warning-light: #fcd34d;
    --error: #ef4444;
    --error-light: #fca5a5;
    --dark: #1e293b;
    --dark-secondary: #293548;
    --dark-tertiary: #334155;
    --light: #f8fafc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --sidebar-width: 260px;
    --header-height: 70px;
    --content-padding: 24px;
    --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--gray-100);
    color: var(--gray-800);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* LAYOUT */
.app-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* SIDEBAR */
.sidebar {
    width: var(--sidebar-width);
    min-height: 100vh;
    background-color: var(--dark);
    color: var(--light);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.sidebar-brand {
    display: flex;
    align-items: left;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand .brand-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: left;
    justify-content: center;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
}

.sidebar-brand h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* SIDEBAR MENU */
.sidebar-menu {
    padding: 20px 0;
    overflow-y: auto;
    max-height: calc(100vh - 70px - 80px); /* header height - user profile height */
}

.menu-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    font-weight: 600;
    padding: 12px 25px 8px;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-light);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    margin: 2px 0;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.menu-item.active {
    background-color: var(--primary);
    color: white;
    font-weight: 500;
}

.menu-item i, .menu-item svg {
    width: 22px;
    margin-right: 12px;
    font-size: 18px;
    transition: all 0.2s;
}

.menu-item .badge {
    margin-left: auto;
    background-color: var(--secondary);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.user-profile {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--dark-tertiary);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 12px;
}

.user-info {
    flex: 1;
    overflow: hidden;
}

.user-name {
    font-weight: 600;
    color: white;
    font-size: 14px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 12px;
    color: var(--gray-400);
}

.logout-button {
    background-color: transparent;
    color: var(--gray-400);
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: all 0.2s;
}

.logout-button:hover {
    color: var(--secondary-light);
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 20px;
    min-height: 100vh;
    position: relative;
    width: calc(100% - var(--sidebar-width));
    box-sizing: border-box;
    z-index: 1;
    pointer-events: auto;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: var(--header-height);
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.header-title {
    display: flex;
    align-items: center;
}

.header-title h1 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

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

.header-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--gray-600);
    transition: all 0.2s;
    position: relative;
    text-decoration: none;
}

.header-action:hover {
    background-color: var(--gray-100);
    color: var(--primary);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-color: var(--primary);
    color: white;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.menu-toggle:hover {
    background-color: var(--primary-dark);
}

/* PAGE CONTENT */
.page-content {
    padding: var(--content-padding);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--gray-400);
}

.page-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.page-title .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.page-title h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
    line-height: 1.3;
}

.page-title p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 5px 0 0;
}

/* CARDS */
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    margin-bottom: 25px;
    overflow: hidden;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.card-body {
    padding: 25px;
}

.card-footer {
    padding: 15px 25px;
    border-top: 1px solid var(--gray-200);
    background-color: var(--gray-50);
}

/* ALERTS */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.alert-info {
    background-color: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary);
    color: var(--primary-dark);
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    color: var(--warning);
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--error);
    color: var(--error);
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success);
    color: var(--success);
}

.alert-icon {
    margin-right: 15px;
    font-size: 20px;
    padding-top: 1px;
}

.alert-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.alert-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-400);
    font-size: 32px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--gray-500);
    max-width: 450px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

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

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

.table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

.table th {
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-200);
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
}

.table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-800);
    font-size: 14px;
}

.table tbody tr:hover {
    background-color: var(--gray-50);
}

.table .status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.table .status-waiting {
    background-color: var(--warning-light);
    color: var(--warning);
}

.table .status-approved {
    background-color: var(--success-light);
    color: var(--success);
}

.table .status-overdue {
    background-color: var(--error-light);
    color: var(--error);
}

.table .action-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    background-color: var(--gray-100);
    margin-right: 5px;
    transition: all 0.2s;
}

.table .action-btn:hover {
    background-color: var(--primary);
    color: white;
}

/* MODALS */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transform: translateY(-20px);
    transition: all 0.3s;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: left;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--gray-500);
    cursor: pointer;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 15px 25px;
    border-top: 1px solid var(--gray-200);
    background-color: var(--gray-50);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 1000;
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .header {
        padding: 0 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding: 15px;
        overflow-x: visible;
    }
    
    .card-header, .card-body, .card-footer {
        padding: 15px 20px;
    }
    
    .table th, .table td {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .header-title h1 {
        font-size: 18px;
    }
    
    .page-title h1 {
        font-size: 20px;
    }
    
    .page-title .icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .empty-state h3 {
        font-size: 18px;
    }
}

/* ERROR MESSAGE */
.error-message {
    background-color: var(--error-light);
    color: var(--error);
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid var(--error);
}

/* LOGIN SPECIFIC STYLES */
.login-card {
    display: flex;
    max-width: 1000px;
    height: 600px;
    margin: 50px auto;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
}

.login-info {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.login-info-content {
    position: relative;
    z-index: 2;
}

.login-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.login-info p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

.login-form-container {
    width: 450px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.login-form-content {
    width: 100%;
}

.login-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-form-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.login-form-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.login-form-header p {
    font-size: 14px;
    color: var(--gray-500);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 43px;
    color: var(--gray-400);
}

.input-with-icon {
    padding-left: 45px !important;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.2s;
    color: var(--gray-700);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 8px;
}

.form-check-label {
    font-size: 14px;
    color: var(--gray-600);
}

.forgot-password {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.login-footer {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
}

.login-footer a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
}

.login-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.background-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(99, 102, 241, 0.15);
    bottom: -160px;
    border-radius: 15px;
    animation: square 25s infinite;
    transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    width: 80px;
    height: 80px;
}

.bg-bubbles li:nth-child(2) {
    left: 20%;
    width: 90px;
    height: 90px;
    animation-delay: 2s;
    animation-duration: 17s;
}

.bg-bubbles li:nth-child(3) {
    left: 25%;
    animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-duration: 22s;
    background-color: rgba(99, 102, 241, 0.25);
}

.bg-bubbles li:nth-child(5) {
    left: 70%;
}

.bg-bubbles li:nth-child(6) {
    left: 80%;
    width: 120px;
    height: 120px;
    animation-delay: 3s;
    background-color: rgba(99, 102, 241, 0.2);
}

.bg-bubbles li:nth-child(7) {
    left: 32%;
    width: 160px;
    height: 160px;
    animation-delay: 7s;
}

.bg-bubbles li:nth-child(8) {
    left: 55%;
    width: 20px;
    height: 20px;
    animation-delay: 15s;
    animation-duration: 40s;
}

.bg-bubbles li:nth-child(9) {
    left: 25%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
    animation-duration: 40s;
    background-color: rgba(99, 102, 241, 0.3);
}

.bg-bubbles li:nth-child(10) {
    left: 90%;
    width: 160px;
    height: 160px;
    animation-delay: 11s;
}

@keyframes square {
    0% {
        transform: translateY(0);
        opacity: 0.5;
        border-radius: 15px;
    }
    100% {
        transform: translateY(-900px) rotate(600deg);
        opacity: 0;
        border-radius: 50%;
    }
}

@media (max-width: 992px) {
    .login-card {
        flex-direction: column;
        height: auto;
        margin: 20px;
    }
    
    .login-info {
        padding: 30px;
    }
    
    .login-form-container {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .login-info {
        display: none;
    }
}

/* Sidebar collapsed state */
.sidebar.collapsed {
    transform: translateX(-100%);
}

.main-content.expanded {
    margin-left: 0;
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 10px;
    border: none;
    color: white;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Sidebar için mobil düzenlemeler */
    .sidebar {
        transform: translateX(-100%);
        z-index: 2000;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    /* Overlay for mobile menu */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1500;
    }

    .sidebar-overlay.active {
        display: block;
    }

    /* Main content full width on mobile */
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    /* Dashboard container düzenlemeleri */
    .dashboard-container {
        flex-direction: column;
    }

    /* Content padding azalt */
    .content {
        padding: 20px 15px;
    }

    /* Header mobil düzenlemeleri */
    .header {
        padding: 14px 16px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .header-brand {
        font-size: 18px;
    }

    .header-brand i {
        font-size: 20px;
    }

    .header-actions {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    /* Mobile Menu Toggle Button göster */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: -1;
    }

    .header-action {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Summary cards mobil için */
    .summary-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .stat-value {
        font-size: 24px;
    }

    /* Section title mobil */
    .section-title-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .section-title-header h2 {
        font-size: 18px;
    }

    /* Konut cards mobil */
    .konut-mini-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Modern table mobil scroll */
    .modern-table-container {
        overflow-x: auto;
        border-radius: 8px;
    }

    .modern-table {
        min-width: 600px;
    }

    .modern-table thead th {
        padding: 12px;
        font-size: 12px;
    }

    .modern-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stat-card-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-icon {
        margin-bottom: 10px;
    }

    .card-view-btn {
        width: 100%;
        justify-content: center;
    }
}

a, button, .btn, .card-view-btn, .btn-view-purple, .konut-mini-link, .menu-item { cursor: pointer !important; pointer-events: auto !important; }

/* Mobil Sidebar Stilleri */
@media (max-width: 768px) {
    .sidebar {
        position: fixed !important;
        left: -260px !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 260px !important;
        background: var(--dark) !important;
        z-index: 1000 !important;
        transition: left 0.3s ease !important;
        transform: none !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1) !important;
    }

    .sidebar.mobile-show {
        left: 0 !important;
        transform: translateX(0) !important;
    }
    
    /* Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .sidebar-overlay.show {
        display: block;
    }
}
