  .admin-dashboard-container {
        width: 100%;
        max-width: none;
        min-height: 100%;
        padding: 32px;
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 24px;
        align-content: start;
    }

    .dashboard-header {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
        grid-column: 1 / -1;
    }
    .dashboard-header h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 0.1rem;
    }
    .dashboard-subtitle {
        color: var(--text-secondary);
        font-size: 1.1rem;
    }

    .admin-dashboard-container > .alert {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    .admin-cards-grid {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 24px;
    }

    .admin-section.card {
        background: var(--bg-card);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
        padding: 24px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        min-width: 0;
        transition: box-shadow 0.18s;
    }
    .admin-cards-grid > .admin-section.card {
        grid-column: span 4;
    }
    .admin-section.card:hover {
        box-shadow: var(--shadow-lg);
    }
    .card-header {
        margin-bottom: 10px;
        border-bottom: 1px solid var(--border);
        padding-bottom: 6px;
    }
    .admin-form {
        display: flex;
        flex-direction: column;
        gap: 14px;
        max-width: 480px;
        width: 100%;
    }
    .admin-form .btn-block {
        margin-top: 8px;
    }
    .users-card {
        grid-column: 1 / -1;
    }
    .users-table-wrap {
        overflow-x: auto;
        margin-top: 10px;
    }
    .users-table {
        width: 100%;
        border-collapse: collapse;
        background: var(--bg);
        border-radius: var(--radius);
        overflow: hidden;
        font-size: 0.98rem;
    }
    .users-table th,
    .users-table td {
        border-bottom: 1px solid var(--border);
        text-align: left;
        padding: 10px 8px;
        vertical-align: top;
    }
    .users-table th {
        background: var(--bg-hover);
        color: var(--text-secondary);
        font-weight: 600;
        letter-spacing: 0.01em;
    }
    .users-table tr:hover {
        background: var(--bg-hover);
    }
    .alert-success {
        background: rgba(52, 211, 153, 0.12);
        border: 1px solid rgba(52, 211, 153, 0.4);
        color: #86efac;
        border-radius: var(--radius);
        padding: 10px 12px;
    }
    .alert-error {
        background: rgba(248, 113, 113, 0.1);
        color: var(--danger);
        border: 1px solid rgba(248, 113, 113, 0.3);
        border-radius: var(--radius);
        padding: 10px 12px;
    }
    @media (max-width: 900px) {
        .admin-dashboard-container {
            grid-template-columns: 1fr;
            padding: 24px;
        }
        .admin-cards-grid {
            grid-template-columns: 1fr;
        }
        .admin-cards-grid > .admin-section.card,
        .users-card {
            grid-column: 1;
        }
    }
    @media (max-width: 600px) {
        .admin-dashboard-container {
            padding: 16px;
        }
        .admin-section.card {
            padding: 16px 14px;
        }
        .dashboard-header h1 {
            font-size: 1.3rem;
        }
    }