/* Kampus Kart - AiTech Bootstrap 5 tema override'lari */

:root {
    --primary: #1363C6;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
    --kk-blue: #1363C6;
    --kk-blue-dark: #0f52a8;
    --kk-blue-press: #0c4590;
    --kk-radius: 8px;
    --kk-radius-lg: 12px;
    --kk-space-1: 8px;
    --kk-space-2: 16px;
    --kk-space-3: 24px;
    --kk-space-4: 32px;
    --kk-sidebar-w: 248px;
    --kk-shadow: 0 8px 24px rgba(20, 24, 62, 0.08);
    --kk-border: rgba(19, 99, 198, 0.1);
    --kk-text: #4a5568;
    --kk-muted: #8a94a6;
}

body.kk-theme {
    font-family: 'Open Sans', sans-serif;
    color: var(--kk-text);
    background-color: var(--light);
}

body.kk-theme h1,
body.kk-theme h2,
body.kk-theme h3,
body.kk-theme h4,
body.kk-theme h5,
body.kk-theme .navbar-brand,
body.kk-theme .pageTitle,
body.kk-theme .kk-brand-text,
body.kk-theme .kk-page-hero-title,
body.kk-theme .kk-footer-title {
    font-family: 'Ubuntu', sans-serif;
}

/* BS3 uyumluluk: card-block -> card-body */
.kk-theme .card-block {
    flex: 1 1 auto;
    padding: var(--kk-space-3);
}

.kk-theme .card.sb-card {
    background: #ffffff;
    border: 1px solid var(--kk-border);
    border-radius: var(--kk-radius-lg);
    box-shadow: var(--kk-shadow);
    margin-bottom: var(--kk-space-3);
    max-width: 100%;
}

.kk-theme .btn {
    border-radius: var(--kk-radius);
    font-weight: 600;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.kk-theme .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.kk-theme .btn-primary:hover,
.kk-theme .btn-primary:focus {
    background-color: var(--kk-blue-dark);
    border-color: var(--kk-blue-dark);
    box-shadow: 0 6px 16px rgba(19, 99, 198, 0.28);
}

.kk-theme .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.kk-theme .btn-danger:hover,
.kk-theme .btn-danger:focus {
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.25);
}

.kk-theme .btn-secondary {
    background-color: #5f6b7a;
    border-color: #5f6b7a;
    color: #fff;
}

.kk-theme .btn-secondary:hover,
.kk-theme .btn-secondary:focus {
    background-color: #4a5568;
    border-color: #4a5568;
    color: #fff;
    box-shadow: 0 6px 16px rgba(95, 107, 122, 0.25);
}

.kk-theme .btn-info {
    border-radius: var(--kk-radius);
}

.kk-theme .btn-warning {
    border-radius: var(--kk-radius);
}

.kk-theme .form-control,
.kk-theme .form-select {
    border-radius: var(--kk-radius);
    border-color: #d8dee8;
    min-height: 42px;
    padding: 8px 12px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.kk-theme .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.kk-theme .form-control:focus,
.kk-theme .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(19, 99, 198, 0.15);
}

.kk-theme .nav-tabs {
    border-bottom: 2px solid rgba(19, 99, 198, 0.12);
    gap: 0.25rem;
}

.kk-theme .nav-tabs .nav-link {
    border: none;
    border-radius: var(--kk-radius) var(--kk-radius) 0 0;
    color: #5f6b7a;
    font-weight: 600;
}

.kk-theme .nav-tabs .nav-link.active,
.kk-theme .nav-tabs .nav-item.show .nav-link {
    color: var(--primary);
    background: #fff;
    border-bottom: 3px solid var(--primary);
}

.kk-theme .table {
    border-color: #e8edf5;
}

.kk-theme .table > thead > tr > th,
.kk-theme .table > thead > tr > td,
.kk-theme .table thead th {
    background: var(--light);
    color: var(--dark);
    font-weight: 600;
    border-bottom-width: 2px;
}

.kk-theme .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgba(19, 99, 198, 0.03);
}

.kk-theme .table > tbody > tr.kk-aktif-kart > td {
    background-color: rgba(0, 164, 255, 0.35) !important;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #00a4ff;
}

.kk-theme .table > tbody > tr.kk-mifare-tekrar > td {
    font-weight: 700;
    color: #0b1f33;
}

.kk-theme .table.kk-sortable > thead > tr > th {
    cursor: pointer;
    user-select: none;
    white-space: normal;
    vertical-align: middle;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: none;
}

.kk-theme .table.kk-sortable > thead > tr > th::after {
    content: " \2195";
    opacity: 0.35;
    font-size: 0.85em;
    white-space: nowrap;
}

.kk-theme .table.kk-sortable > thead > tr > th.kk-sort-asc::after {
    content: " \2191";
    opacity: 1;
    color: var(--primary);
}

.kk-theme .table.kk-sortable > thead > tr > th.kk-sort-desc::after {
    content: " \2193";
    opacity: 1;
    color: var(--primary);
}

.kk-theme .table.kk-sortable > thead > tr > th.kk-nosort {
    cursor: default;
    white-space: normal;
    width: 8%;
}

.kk-theme .table.kk-sortable > thead > tr > th.kk-nosort::after {
    content: none;
}

.kk-theme .kk-table-panel {
    background: #fff;
    border: 1px solid var(--kk-border);
    border-radius: var(--kk-radius-lg);
    box-shadow: var(--kk-shadow);
    padding: var(--kk-space-2);
    margin-top: var(--kk-space-1);
}

.kk-theme .kk-table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.kk-theme .kk-table-scroll.table-responsive {
    overflow-x: hidden;
}

.kk-theme .kk-table-scroll > .table {
    margin-bottom: 0;
    width: 100%;
    table-layout: fixed;
    font-size: 0.78rem;
}

.kk-theme .kk-table-scroll > .table > thead > tr > th,
.kk-theme .kk-table-scroll > .table > tbody > tr > td {
    padding: 8px;
    vertical-align: middle;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.kk-theme .kk-table-scroll > .table > tbody > tr > td.kk-wrap-cell {
    white-space: normal;
    text-align: left;
}

.kk-theme .kk-table-scroll .kk-actions-cell {
    vertical-align: top;
}

.kk-theme .kk-table-scroll .kk-actions-cell .btn,
.kk-theme .kk-btn-table {
    display: block;
    width: 100%;
    white-space: normal;
    line-height: 1.2;
    padding: 6px 8px;
    font-size: 0.72rem;
    border-radius: var(--kk-radius);
    margin: 0 0 8px;
}

.kk-theme .kk-table-scroll .kk-actions-cell .btn:last-child {
    margin-bottom: 0;
}

.kk-theme .kk-table-scroll th.kk-nosort .btn {
    display: block;
    width: 100%;
    margin-top: 8px;
    border-radius: var(--kk-radius);
}

.kk-theme .modal-content {
    border: none;
    border-radius: var(--kk-radius-lg);
    box-shadow: 0 20px 50px rgba(20, 24, 62, 0.15);
}

.kk-theme .modal-header {
    border-bottom: 1px solid #edf2f8;
}

.kk-theme .modal-footer {
    border-top: 1px solid #edf2f8;
}

/* ===== App shell: sidebar + content (100vh) ===== */
.kk-public-shell {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.kk-app {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    height: 100%;
}

.kk-app-body {
    flex: 1 1 auto;
    display: flex;
    min-height: 0;
    min-width: 0;
    width: 100%;
}

.kk-shell-main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--light);
}

.kk-main-container {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    width: 100%;
    padding: var(--kk-space-3) var(--kk-space-3) var(--kk-space-4);
}

/* ===== Top bar (content area only) ===== */
.kk-topbar-wrap {
    flex: 0 0 auto;
    background: #fff;
    border-bottom: 1px solid var(--kk-border);
    box-shadow: 0 2px 12px rgba(20, 24, 62, 0.04);
    z-index: 20;
}

.kk-topbar {
    display: flex;
    align-items: center;
    gap: var(--kk-space-2);
    min-height: 64px;
    padding: 0 var(--kk-space-3);
}

.kk-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}

.kk-brand:hover {
    color: var(--primary);
    text-decoration: none;
}

.kk-brand-top {
    color: #fff;
}

.kk-brand-top:hover {
    color: #fff;
}

.kk-brand-logo {
    height: 40px;
    width: auto;
}

.kk-brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.kk-brand-text span {
    color: var(--secondary);
}

.kk-user-nav {
    margin-left: auto;
}

.kk-user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark) !important;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: var(--kk-radius);
    transition: background-color 0.15s ease;
}

.kk-user-trigger:hover {
    background: var(--light);
    color: var(--primary) !important;
}

.kk-user-name {
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 575.98px) {
    .kk-user-name {
        display: none;
    }
}

.kk-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.kk-topbar-wrap .dropdown-menu {
    border: none;
    border-radius: var(--kk-radius-lg);
    padding: 8px;
    min-width: 220px;
}

.kk-topbar-wrap .dropdown-menu .dropdown-header {
    color: var(--dark);
    font-weight: 700;
    white-space: normal;
}

.kk-topbar-wrap .dropdown-item {
    border-radius: var(--kk-radius);
    padding: 8px 12px;
    font-weight: 500;
}

.kk-topbar-wrap .dropdown-item:hover,
.kk-topbar-wrap .dropdown-item:focus {
    background: var(--light);
    color: var(--primary);
}

.kk-topbar-wrap .dropdown-item.text-danger:hover {
    background: #fdecec;
    color: #d9342b !important;
}

/* ===== Sidebar ===== */
.kk-sidebar {
    flex: 0 0 var(--kk-sidebar-w);
    width: var(--kk-sidebar-w);
    max-width: var(--kk-sidebar-w);
    background: #fff;
    border-right: 1px solid var(--kk-border);
    box-shadow: 4px 0 24px rgba(20, 24, 62, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 0;
    z-index: 30;
    overflow: hidden;
    transition: width 0.22s ease, flex-basis 0.22s ease, max-width 0.22s ease, opacity 0.18s ease, border-color 0.18s ease;
}

body.kk-sidebar-collapsed .kk-app-with-sidebar .kk-sidebar {
    flex-basis: 0;
    width: 0;
    max-width: 0;
    opacity: 0;
    border-right-color: transparent;
    pointer-events: none;
}

.kk-sidebar-brand {
    flex: 0 0 auto;
    padding: 16px;
    border-bottom: 1px solid var(--kk-border);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.kk-sidebar-brand .kk-brand {
    color: #fff;
}

.kk-sidebar-brand .kk-brand:hover {
    color: #fff;
}

.kk-sidebar-brand .kk-brand-text span {
    color: rgba(255, 255, 255, 0.7);
}

.kk-sidebar-inner {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: var(--kk-space-3) var(--kk-space-2);
}

.kk-sidebar-label {
    margin: 0 8px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--kk-muted);
}

.kk-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kk-side-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--kk-radius);
    color: var(--kk-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.25;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.kk-side-link i {
    flex-shrink: 0;
    width: 1.25rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--primary);
    opacity: 0.85;
}

.kk-side-link:hover {
    background: var(--light);
    color: var(--primary);
    text-decoration: none;
}

.kk-side-link.active {
    background: var(--primary);
    color: #fff;
    box-shadow: none;
}

.kk-side-link.active i {
    color: #fff;
    opacity: 1;
}

.kk-app:not(.kk-app-with-sidebar) .kk-topbar-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-bottom: none;
}

.kk-app:not(.kk-app-with-sidebar) .kk-user-trigger {
    color: #fff !important;
}

.kk-app:not(.kk-app-with-sidebar) .kk-user-trigger:hover,
.kk-app:not(.kk-app-with-sidebar) .kk-user-trigger:focus {
    background: rgba(255, 255, 255, 0.16);
    color: #fff !important;
}

.kk-app:not(.kk-app-with-sidebar) .kk-user-trigger::after {
    color: rgba(255, 255, 255, 0.85);
}

.kk-app:not(.kk-app-with-sidebar) .kk-avatar {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.kk-theme .badge {
    border-radius: 50rem;
    font-weight: 600;
    padding: 0.4em 0.75em;
}

.kk-sidebar-toggle {
    color: var(--primary) !important;
    border: 1px solid var(--kk-border);
    background: #fff;
    border-radius: var(--kk-radius);
    padding: 6px 10px;
    line-height: 1;
    font-size: 1.35rem;
}

.kk-sidebar-toggle:hover,
.kk-sidebar-toggle:focus {
    background: var(--light);
    color: var(--primary) !important;
}

.kk-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 24, 62, 0.45);
    z-index: 25;
}

@media (max-width: 991.98px) {
    .kk-app-with-sidebar .kk-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1035;
        width: min(280px, 86vw);
        max-width: min(280px, 86vw);
        flex-basis: auto;
        transform: translateX(-105%);
        opacity: 1;
        pointer-events: auto;
        transition: transform 0.22s ease;
        box-shadow: 8px 0 32px rgba(20, 24, 62, 0.18);
    }

    body.kk-sidebar-open .kk-app-with-sidebar .kk-sidebar {
        transform: translateX(0);
    }

    body.kk-sidebar-collapsed .kk-app-with-sidebar .kk-sidebar {
        flex-basis: auto;
        width: min(280px, 86vw);
        max-width: min(280px, 86vw);
        opacity: 1;
        border-right-color: var(--kk-border);
        pointer-events: auto;
    }

    .kk-main-container {
        padding: var(--kk-space-2);
    }
}

/* ===== Page hero (premium card) ===== */
.kk-page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: var(--kk-space-3);
    background: linear-gradient(135deg, #0a3d82 0%, #1363C6 48%, #3d9be8 100%);
    box-shadow:
        0 14px 36px rgba(15, 82, 168, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kk-page-hero:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 42px rgba(15, 82, 168, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

/* Decorative radial glow — top-right, non-blocking */
.kk-page-hero::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
    z-index: 0;
}

.kk-page-hero-body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.kk-page-hero-content {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    flex: 1 1 auto;
}

.kk-page-hero-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 20px rgba(10, 61, 130, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 1.65rem;
}

.kk-page-hero-copy {
    min-width: 0;
}

.kk-page-hero-badge,
.kk-page-hero-kicker {
    display: inline-block;
    margin: 0 0 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.kk-page-hero-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
    /* Badge yazısından ~%10 daha açık */
    color: #ffffff;
}

.kk-page-hero-sub {
    margin: 0;
    opacity: 0.82;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 40rem;
}

.kk-page-hero-action {
    flex: 0 0 auto;
}

.kk-page-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 22px;
    border-radius: 10px;
    background: #fff;
    color: var(--kk-blue);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(10, 61, 130, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.kk-page-hero-cta:hover,
.kk-page-hero-cta:focus {
    color: var(--kk-blue-dark);
    background: #f7fbff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 61, 130, 0.28);
    text-decoration: none;
}

/* ===== Query form ===== */
.kk-query-card .card-body {
    padding: var(--kk-space-3);
}

.kk-query-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--kk-space-2);
    align-items: end;
}

.kk-query-field {
    min-width: 0;
}

.kk-query-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--kk-space-2);
}

.kk-genel .kk-btn-action {
    border-radius: 50rem;
    min-width: 140px;
    min-height: 42px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
}

.kk-genel .input-group-addon,
.kk-genel .input-group-text {
    background: var(--light);
    border-color: #d8dee8;
}

.kk-results {
    margin-top: var(--kk-space-2);
}

@media (max-width: 991.98px) {
    .kk-query-fields {
        grid-template-columns: 1fr 1fr;
    }

    .kk-page-hero-body {
        flex-wrap: wrap;
    }

    .kk-page-hero-action {
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {
    .kk-page-hero-body {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .kk-page-hero-action {
        margin-left: 0;
        width: 100%;
    }

    .kk-page-hero-cta {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .kk-query-fields {
        grid-template-columns: 1fr;
    }

    .kk-query-actions {
        justify-content: stretch;
    }

    .kk-query-actions .kk-btn-action {
        width: 100%;
    }

    .kk-page-hero {
        padding: 24px;
    }

    .kk-page-hero-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .kk-page-hero-content {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .kk-page-hero-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        font-size: 1.4rem;
    }

    .kk-page-hero-title {
        font-size: 22px;
    }

    .kk-page-hero-action {
        width: 100%;
    }

    .kk-page-hero-cta {
        width: 100%;
    }
}

/* ===== Footer ===== */
.kk-footer {
    flex: 0 0 auto;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.78);
    z-index: 15;
}

.kk-footer-inner {
    padding: 16px var(--kk-space-3) 12px;
}

.kk-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--kk-space-2);
    align-items: center;
}

.kk-footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.kk-footer-text {
    margin: 0;
    line-height: 1.45;
    max-width: 40rem;
    font-size: 0.875rem;
}

.kk-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
    font-size: 0.875rem;
}

.kk-footer-contact a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
}

.kk-footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.kk-footer-copy {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767.98px) {
    .kk-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kk-footer-contact {
        text-align: center;
    }

    .kk-footer-text {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Yonetici kabugu - Aquincum skin */
body.kk-admin-theme #top,
body.kk-admin-theme #top-other-user {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(19, 99, 198, 0.2);
}

body.kk-admin-theme #sidebar {
    background: #0f1f3d;
}

body.kk-admin-theme #sidebar .mainNav .nav li a,
body.kk-admin-theme #sidebar .mainNav .user span {
    color: rgba(255, 255, 255, 0.85);
}

body.kk-admin-theme #sidebar .mainNav .nav li a:hover,
body.kk-admin-theme #sidebar .mainNav .nav li a.active,
body.kk-admin-theme #sidebar .mainNav .nav li ul li a:hover {
    background: rgba(19, 99, 198, 0.35);
    color: #fff;
}

body.kk-admin-theme #content {
    background: var(--light);
}

body.kk-admin-theme .contentTop,
body.kk-admin-theme .breadLine,
body.kk-admin-theme .wrapper {
    background: transparent;
}

body.kk-admin-theme .pageTitle {
    color: var(--dark);
    font-weight: 700;
}

body.kk-admin-theme .quickStats li strong.blue,
body.kk-admin-theme .quickStats li strong {
    color: var(--primary) !important;
}

body.kk-admin-theme .btn-primary,
body.kk-admin-theme .buttonS.bDefault,
body.kk-admin-theme input.buttonS.bDefault {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    border-radius: var(--kk-radius);
}

body.kk-admin-theme .btn-primary:hover,
body.kk-admin-theme .buttonS.bDefault:hover {
    background: var(--kk-blue-dark) !important;
    border-color: var(--kk-blue-dark) !important;
}

body.kk-admin-theme .widget,
body.kk-admin-theme .whead,
body.kk-admin-theme .card,
body.kk-admin-theme .sb-card {
    border-radius: var(--kk-radius-lg);
    box-shadow: 0 8px 24px rgba(20, 24, 62, 0.06);
}

body.kk-admin-theme .kk-aitech-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
}

body.kk-admin-theme .kk-aitech-top[data-env="test"] {
    box-shadow: inset 0 -4px 0 rgba(192, 236, 43, 0.65);
}

body.kk-admin-theme .logo-university-text,
body.kk-admin-theme .logo-cims-text {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

body.kk-admin-theme #sidebar .mainNav {
    background: #0f1f3d;
}

body.kk-admin-theme .menuH-wrapper,
body.kk-admin-theme .breadLine {
    background: #fff;
    border-radius: var(--kk-radius-lg);
    margin: 0 12px;
    box-shadow: 0 4px 18px rgba(20, 24, 62, 0.05);
}

body.kk-admin-theme .wrapper .widget,
body.kk-admin-theme .wrapper .wContainer {
    border-radius: var(--kk-radius-lg);
}

/* Aquincum + BS5 catisma onleme */
body.kk-admin-theme .modal-backdrop {
    z-index: 1050;
}

body.kk-admin-theme .modal {
    z-index: 1055;
}

body.kk-admin-theme .btn,
body.kk-admin-theme .form-control,
body.kk-admin-theme select,
body.kk-admin-theme textarea {
    font-size: 14px;
}

/* jQuery UI / datetimepicker uyumu */
.kk-theme .bootstrap-datetimepicker-widget,
.kk-theme .ui-datepicker {
    z-index: 1060 !important;
    border-radius: var(--kk-radius-lg);
    box-shadow: 0 12px 30px rgba(20, 24, 62, 0.12);
}

.kk-theme .bootstrap-datetimepicker-widget table td.active,
.kk-theme .bootstrap-datetimepicker-widget table td.active:hover {
    background-color: var(--primary);
}

.kk-theme .select2-container--default .select2-selection--single {
    border-radius: var(--kk-radius);
    border-color: #d8dee8;
    min-height: 38px;
}

.kk-theme .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}
