/* Admin Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Watoto Church official colors */
    --primary-color: #25802D; /* Watoto Green */
    --primary-dark: #1a5a20; /* Darker green for hover states */
    --primary-light: #2d9a37; /* Lighter green for accents */
    --secondary-color: #000000; /* Black */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --success: #25802D; /* Use brand green for success */
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Admin specific colors */
    --sidebar-bg: #2c3e50;
    --sidebar-text: #ecf0f1;
    --sidebar-hover: #34495e;
    --content-bg: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
    
    /* Fonts */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-secondary);
    background: var(--content-bg);
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Admin Login Page - Matching User Login Design */
.admin-login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 440px;
}

.admin-login-content {
    width: 100%;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.admin-login-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #25802D, #1a5a20);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 128, 45, 0.25);
}

.admin-login-icon i {
    font-size: 28px;
    color: white;
}

.admin-login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: 'Outfit', sans-serif;
}

.admin-login-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-size: 14px;
    font-weight: 600;
    color: #343a40;
    margin: 0;
    display: block;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #6c757d;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid #dee2e6;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    outline: none;
}

.input-wrapper input::placeholder {
    color: #adb5bd;
}

.input-wrapper input:focus {
    border-color: #25802D;
    box-shadow: 0 0 0 3px rgba(37, 128, 45, 0.1);
    background: #ffffff;
}

.input-wrapper input:hover:not(:focus) {
    border-color: #adb5bd;
}

.password-toggle-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 6px;
}

.password-toggle-btn:hover {
    color: #25802D;
    background: rgba(37, 128, 45, 0.08);
}

.checkbox-field {
    flex: 0 0 auto;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    padding: 0;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: white;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-indicator {
    background: #25802D;
    border-color: #25802D;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-indicator::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 12px;
}

.checkbox-text {
    font-size: 14px;
    color: #495057;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #25802D 0%, #1a5a20 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(37, 128, 45, 0.25);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 128, 45, 0.35);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.admin-login-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.admin-login-footer p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.admin-login-footer a {
    color: #25802D;
    text-decoration: none;
    font-weight: 600;
}

.admin-login-footer a:hover {
    color: #1a5a20;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .admin-login-card {
        padding: 36px 28px;
        border-radius: 16px;
    }

    .admin-login-header {
        margin-bottom: 28px;
        padding-bottom: 20px;
    }

    .admin-login-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .admin-login-icon i {
        font-size: 24px;
    }

    .admin-login-header h1 {
        font-size: 24px;
    }

    .admin-login-subtitle {
        font-size: 14px;
    }

    .input-wrapper input {
        padding: 13px 14px 13px 44px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Admin Dashboard Layout */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid var(--sidebar-hover);
    text-align: center;
}

.sidebar-header .logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.sidebar-header h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sidebar-nav {
    padding: 20px 0;
}

.nav-menu {
    list-style: none;
}

.nav-item {
    margin-bottom: 2px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--sidebar-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
    background: var(--sidebar-hover);
    color: var(--white);
}

.nav-link i {
    width: 20px;
    font-size: 1.1rem;
}

.sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 1px solid var(--sidebar-hover);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--danger);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.logout-btn:hover {
    background: #c82333;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
}

.main-header {
    background: var(--white);
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--dark-gray);
}

.page-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.search-box input {
    padding: 8px 15px 8px 40px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;
    width: 250px;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-name {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Content Sections */
.content-wrapper {
    flex: 1;
    padding: 30px;
}

.content-section {
    display: block;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.section-actions {
    display: flex;
    gap: 10px;
}

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.view-all:hover {
    text-decoration: underline;
}

.card-content {
    padding: 20px;
}

.booking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.booking-item:last-child {
    border-bottom: none;
}

.booking-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.booking-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: var(--warning);
}

.status.approved {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.status.active {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.status.rejected {
    background: rgba(220, 53, 69, 0.2);
    color: var(--danger);
}

/* Event Items */
.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    min-width: 50px;
}

.event-date .day {
    font-size: 1.2rem;
    font-weight: 700;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.event-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.event-info .time {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Data Tables */
.table-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--dark-gray);
}

.data-table tr:hover {
    background: var(--light-gray);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-action {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.btn-action.approve {
    background: var(--success);
    color: var(--white);
}

.btn-action.reject {
    background: var(--danger);
    color: var(--white);
}

.btn-action.edit {
    background: var(--info);
    color: var(--white);
}

.btn-action.delete {
    background: var(--danger);
    color: var(--white);
}

.btn-action:hover {
    transform: translateY(-2px);
}

/* Venues Grid */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.venue-admin-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.venue-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.venue-status-badge.active {
    background: var(--success);
    color: var(--white);
}

.venue-status-badge.maintenance {
    background: var(--warning);
    color: var(--dark-gray);
}

.venue-details {
    padding: 20px;
}

.venue-details h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem !important;
}

.venue-details p {
    color: var(--gray);
    margin-bottom: 5px;
}

.venue-details i {
    width: 16px;
    margin-right: 5px;
}

.venue-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.venue-actions .btn {
    flex: 1;
}

/* Reports */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.report-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.report-card h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.chart-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--gray);
}

.chart-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Settings */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.settings-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.settings-card h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.setting-item label {
    font-weight: 600;
    color: var(--dark-gray);
}

.setting-item input[type="text"],
.setting-item input[type="email"],
.setting-item input[type="number"] {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
}

.setting-item input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .setting-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================
   STANDARD ADMIN COMPONENTS
   ============================================ */

/* Admin Page Container */
.admin-page {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header (Standard) */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 16px;
}

.header-content {
    flex: 1;
    min-width: 200px;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0 0 4px 0;
    font-family: var(--font-primary);
}

.page-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Admin Card (Standard) */
.admin-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.admin-card .card-header {
    padding: 20px 24px;
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    font-family: var(--font-primary);
}

.admin-card .card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.admin-card .card-body {
    padding: 24px;
}

.admin-card .card-footer {
    padding: 16px 24px;
    background: var(--light-gray);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Standard Button Variants */
.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 128, 45, 0.3);
}

.btn-warning {
    background: var(--warning);
    color: var(--dark-gray);
}

.btn-warning:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.btn-info {
    background: var(--info);
    color: var(--white);
}

.btn-info:hover {
    background: #138496;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.125rem;
}

/* Status Badges (Standard) */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-approved {
    background: #d1edff;
    color: #155724;
    border: 1px solid #b8e6b8;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f1aeb5;
}

.status-completed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-cancelled {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

.status-unknown {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

/* Table Container (Standard) */
.table-container {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Responsive adjustments for standard components */
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .admin-card .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-card .card-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .admin-card .card-footer {
        flex-direction: column;
    }
    
    .admin-card .card-footer .btn {
        width: 100%;
    }
}
