﻿:root {
    --eks-primary: #0d6efd;
    --eks-success: #198754;
    --eks-danger: #dc3545;
    --eks-warning: #ffc107;
    --eks-dark: #212529;
    --eks-border: #e9ecef;
    --eks-background: #f4f6fb;
    --eks-card: #ffffff;
    --eks-radius: 16px;
    --eks-shadow: 0 10px 25px rgba(0,0,0,.06);
}
.eks-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--eks-shadow);
    padding: 25px;
    margin-bottom: 25px;
    transition: .25s;
}
    .eks-card:hover {
        transform: translateY(-4px);
    }
.eks-page-title {
    font-size: 30px;
    font-weight: 700;
    color: #1b1b1b;
}
.eks-subtitle {
    color: #6c757d;
}
.eks-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.eks-btn {
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    transition: .25s;
}
.eks-btn-primary {
    background: var(--eks-primary);
    color: white;
}
    .eks-btn-primary:hover {
        transform: translateY(-2px);
    }
.eks-badge {
    border-radius: 25px;
    padding: 6px 14px;
    font-size: 13px;
}
.eks-active {
    background: #d1f7e5;
    color: #0f7b4c;
}
.eks-passive {
    background: #ffe3e3;
    color: #b42318;
}
.eks-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.eks-item {
    background: white;
    border-radius: 16px;
    box-shadow: var(--eks-shadow);
    padding: 22px;
    transition: .25s;
}
    .eks-item:hover {
        transform: translateY(-4px);
    }
.eks-item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.eks-item-description {
    color: #6c757d;
    margin-bottom: 15px;
}
.eks-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.eks-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.eks-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #16a34a;
}
.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .sidebar-menu li {
        margin: 4px 0;
    }

    .sidebar-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 10px;
        color: #495057;
        text-decoration: none;
        transition: .2s;
    }

        .sidebar-menu a:hover {
            background: #eef4ff;
            color: #0d6efd;
        }

        .sidebar-menu a.active {
            background: #0d6efd;
            color: #fff;
        }

.menu-header {
    margin-top: 25px;
    margin-bottom: 8px;
    padding-left: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #8a8f98;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 18px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #8c98a4;
    letter-spacing: 1px;
    text-transform: uppercase;
}
    .menu-header i {
        font-size: 15px;
    }

.topbar {
    height: 70px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    border-bottom: 1px solid #e9ecef;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-right {
    display: flex;
    align-items: center;
}

.menu-toggle {
    border: none;
    background: none;
    font-size: 24px;
}
.footer {
    height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    background: white;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: #6c757d;
}
/****************************************/
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    padding: 25px;
    background: #f5f7fb;
}
.sidebar {
    width: 270px;
    background: #fff;
    border-right: 1px solid #e9ecef;
}
.topbar {
    height: 70px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}
.footer {
    height: 55px;
    background: #fff;
    border-top: 1px solid #e9ecef;
}
.eks-page-header {
    margin-bottom: 25px;
}

    .eks-page-header h2 {
        font-weight: 700;
        margin-bottom: 5px;
    }

    .eks-page-header p {
        color: #6c757d;
    }
    /**************************************/

.eks-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

    .eks-page-header h2 {
        margin: 0;
        font-weight: 700;
    }

    .eks-page-header p {
        color: #6c757d;
        margin-top: 5px;
    }
