    .admin-container {
        display: flex;
        min-height: 100vh;
    }

    /* Main Content */
    .admin-main {
        flex: 1;
        margin-left: 250px;
        transition: margin-left 0.3s ease;
    }

    /* Content Area */
    .admin-content {
        padding: 30px;
        min-height: calc(100vh - 70px - 60px);
    }

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

    .content-head-left h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 8px;
        background: linear-gradient(90deg, #4da6ff, #0066cc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .content-head-left p {
        color: #bbbbbb;
        font-size: 1.1rem;
        font-weight: 300;
    }

    /* Add Admin Button */
    .add-admin-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: linear-gradient(135deg, #4da6ff, #0066cc);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
        min-height: 44px;
    }

    .add-admin-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(77, 166, 255, 0.5);
    }

    .add-admin-btn i {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .add-admin-btn:hover i {
        transform: rotate(90deg);
    }

    /* Admins Table */
    .admins-table-container {
        background: rgba(15, 15, 15, 0.7);
        border: 1px solid rgba(77, 166, 255, 0.2);
        border-radius: 15px;
        padding: 20px;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .admins-table {
        width: 100%;
        border-collapse: collapse;
    }

    .admins-table th {
        text-align: left;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(77, 166, 255, 0.2);
        color: #4da6ff;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .admins-table td {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: #bbbbbb;
    }

    .admins-table tr:last-child td {
        border-bottom: none;
    }

    .admins-table tr:hover {
        background: rgba(77, 166, 255, 0.05);
    }

    /* Admin Avatar */
    .admin-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        background: rgba(20, 20, 20, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .admin-icon i {
        font-size: 1.8rem;
        color: #4da6ff;
    }

    /* Admin Info */
    .admin-name {
        font-weight: 600;
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .admin-email {
        font-size: 0.9rem;
        color: #bbbbbb;
    }

    /* Status Indicators */
    .status-indicator {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .status-active {
        background: rgba(46, 204, 113, 0.15);
        color: #2ecc71;
    }

    .status-inactive {
        background: rgba(149, 165, 166, 0.15);
        color: #95a5a6;
    }

    /* Action Buttons */
    .action-set {
        display: flex;
        gap: 10px;
    }

    .action-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(77, 166, 255, 0.1);
        color: #4da6ff;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 36px;
        min-height: 36px;
    }

    .action-icon:hover {
        background: rgba(77, 166, 255, 0.2);
        transform: translateY(-3px);
    }

    .action-icon.delete {
        background: rgba(231, 76, 60, 0.1);
        color: #e74c3c;
    }

    .action-icon.delete:hover {
        background: rgba(231, 76, 60, 0.2);
    }

    /* Admin Card Layout for Mobile */
    .admins-table-card {
        display: none;
    }

    .admin-card {
        background: rgba(15, 15, 15, 0.7);
        border: 1px solid rgba(77, 166, 255, 0.2);
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .admin-card-header {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .admin-card-content {
        margin-bottom: 10px;
    }

    .admin-card-content div {
        margin-bottom: 5px;
        font-size: 0.9rem;
        color: #bbbbbb;
    }

    .admin-card-content .admin-name {
        font-size: 1rem;
        color: #fff;
    }

    /* Admin Form Modal */
    .admin-form-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .admin-form-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .form-panel {
        background: rgba(15, 15, 15, 0.95);
        border: 1px solid rgba(77, 166, 255, 0.3);
        border-radius: 15px;
        width: 100%;
        max-width: 700px;
        box-shadow: 0 0 40px rgba(77, 166, 255, 0.2);
        backdrop-filter: blur(10px);
        transform: translateY(20px);
        transition: transform 0.4s ease;
    }

    .admin-form-modal.active .form-panel {
        transform: translateY(0);
    }

    .form-head {
        padding: 20px 25px;
        border-bottom: 1px solid rgba(77, 166, 255, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .form-head h2 {
        font-size: 1.8rem;
        font-weight: 600;
        background: linear-gradient(90deg, #4da6ff, #0066cc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .close-form {
        background: transparent;
        border: none;
        color: #bbbbbb;
        font-size: 1.5rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        min-width: 44px;
        min-height: 44px;
    }

    .close-form:hover {
        color: #e74c3c;
        background: rgba(231, 76, 60, 0.1);
    }

    .form-body {
        padding: 25px;
    }

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

    .form-label {
        display: block;
        margin-bottom: 8px;
        color: #bbbbbb;
        font-weight: 500;
        font-size: 0.95rem;
    }

    .form-field,
    .form-select {
        width: 100%;
        padding: 12px 16px;
        background: rgba(25, 25, 25, 0.7);
        border: 1px solid rgba(77, 166, 255, 0.2);
        border-radius: 8px;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        min-height: 44px;
    }

    .form-field:focus,
    .form-select:focus {
        outline: none;
        border-color: #4da6ff;
        box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
    }

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-col {
        flex: 1;
    }

    .form-cta {
        display: flex;
        justify-content: flex-end;
        gap: 15px;
        padding-top: 10px;
    }

    .form-btn {
        padding: 12px 25px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        min-height: 44px;
    }

    .btn-primary {
        background: linear-gradient(135deg, #4da6ff, #0066cc);
        color: white;
        box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(77, 166, 255, 0.5);
    }

    .btn-secondary {
        background: rgba(50, 50, 50, 0.5);
        color: #bbbbbb;
        border: 1px solid rgba(77, 166, 255, 0.2);
    }

    .btn-secondary:hover {
        background: rgba(70, 70, 70, 0.5);
        color: #fff;
    }

    /* Responsive */
    @media (max-width: 992px) {


        .admin-main {
            margin-left: 0;
        }


        .admin-nav a {
            justify-content: center;
            padding: 12px;
        }

        .admin-nav i {
            margin-right: 0;
            font-size: 1.4rem;
        }

        .admin-nav a.active {
            border-left: none;
            border-radius: 50%;
            background: rgba(77, 166, 255, 0.2);
        }

        .menu-trigger {
            display: block;
        }

        .form-row {
            flex-direction: column;
            gap: 0;
        }
    }

    @media (max-width: 768px) {


        .topbar-heading {
            font-size: 1.2rem;
        }

        .admin-username {
            display: none;
        }



        .admin-content {
            padding: 20px;
        }

        .content-head-left h1 {
            font-size: 1.8rem;
        }

        .content-head-left p {
            font-size: 1rem;
        }

        .admins-table {
            display: none;
        }

        .admins-table-container {
            padding: 15px;
        }

        .admins-table-card {
            display: block;
        }

        .form-panel {
            width: 90%;
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 576px) {
        .admin-content {
            padding: 15px;
        }

        .content-head {
            gap: 10px;
        }

        .content-head-left h1 {
            font-size: 1.5rem;
        }

        .content-head-left p {
            font-size: 0.9rem;
        }

        .add-admin-btn {
            padding: 10px 15px;
            font-size: 0.9rem;
            min-height: 40px;
        }

        .add-admin-btn i {
            font-size: 1rem;
        }

        .admin-icon {
            width: 50px;
            height: 50px;
        }

        .admin-icon i {
            font-size: 1.5rem;
        }

        .action-icon {
            width: 32px;
            height: 32px;
            font-size: 0.9rem;
            min-width: 32px;
            min-height: 32px;
        }

        .form-head h2 {
            font-size: 1.4rem;
        }

        .form-body {
            padding: 20px 15px;
        }

        .form-field,
        .form-select {
            padding: 10px 12px;
            font-size: 0.9rem;
            min-height: 40px;
        }

        .form-label {
            font-size: 0.9rem;
        }

        .form-btn {
            padding: 10px 20px;
            font-size: 0.9rem;
            min-height: 40px;
        }


    }