/* Kafile Admin Panel - Ozel Stil (Bootstrap 5 CDN uzerine) */

:root {
    --kf-primary: #0f5132;
    --kf-primary-dark: #0a3622;
    --kf-accent: #b45309;
    --kf-danger: #b91c1c;
    --kf-bg: #f5f6f8;
    --kf-sidebar-bg: #103322;
    --kf-sidebar-text: #e7f0ea;
}

body {
    background-color: var(--kf-bg);
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kf-layout {
    min-height: 100vh;
    display: flex;
}

.kf-sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: var(--kf-sidebar-bg);
    color: var(--kf-sidebar-text);
    min-height: 100vh;
}

.kf-sidebar .kf-brand {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    padding: 1.25rem 1.25rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 0.5rem;
}

.kf-sidebar .nav-link {
    color: var(--kf-sidebar-text);
    border-radius: 0.4rem;
    margin: 0.15rem 0.75rem;
    padding: 0.6rem 0.9rem;
    font-weight: 500;
}

.kf-sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.kf-sidebar .nav-link.active {
    background-color: var(--kf-primary);
    color: #fff;
}

.kf-sidebar .nav-link i {
    width: 1.25rem;
    display: inline-block;
    text-align: center;
    margin-right: 0.4rem;
}

.kf-main {
    flex: 1;
    padding: 1.75rem;
    max-width: 100%;
}

.kf-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.kf-card-stat {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.kf-card-stat .kf-stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.badge-role-admin { background-color: #6f42c1; }
.badge-role-leader { background-color: var(--kf-accent); }
.badge-role-member { background-color: #0d6efd; }

.btn-kf-primary {
    background-color: var(--kf-primary);
    border-color: var(--kf-primary);
    color: #fff;
}

.btn-kf-primary:hover {
    background-color: var(--kf-primary-dark);
    border-color: var(--kf-primary-dark);
    color: #fff;
}

.kf-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kf-sidebar-bg), var(--kf-primary));
}

.kf-login-card {
    width: 100%;
    max-width: 400px;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.kf-sos-open-banner {
    border-left: 5px solid var(--kf-danger);
}

table.kf-table thead {
    background-color: #eef1ee;
}

.text-monospace-room {
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.85rem;
    background-color: #eef1ee;
    padding: 0.15rem 0.4rem;
    border-radius: 0.3rem;
}

.kf-qr-image {
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 0.75rem;
    background-color: #fff;
}

@media print {
    .kf-sidebar {
        display: none !important;
    }

    .kf-main {
        padding: 0 !important;
    }

    .kf-layout {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .kf-layout {
        flex-direction: column;
    }

    .kf-sidebar {
        width: 100%;
        min-height: auto;
    }

    .kf-main {
        padding: 1rem;
    }
}
