/* J-click Academy Dashboard Styles */

/* Reset & Base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

/* Dashboard Page */
.dashboard-page {
    min-height: 100vh;
    background: #f8fafc;
}

/* Top Navigation */
.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-logo-img {
    width: 40px;
    height: auto;
}

.dash-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: navy;
}

/* Navigation Links */
.dash-nav-links {
    display: flex;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.dash-nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.dash-nav-links a:hover {
    color: navy;
    background: #f1f5f9;
}

.dash-nav-links a.active {
    color: navy;
    background: #e0e7ff;
}

/* User Menu */
.dash-user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dash-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.dash-user-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.dash-user-org {
    font-size: 0.8rem;
    color: #64748b;
}

.dash-logout-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.dash-logout-btn:hover {
    background: #fecaca;
}

.dash-nav {
    display: flex;
    gap: 30px;
}

.dash-nav span {
    cursor: pointer;
    color: #64748b;
    font-weight: 500;
    transition: color 0.2s;
    padding: 8px 16px;
    border-radius: 8px;
}

.dash-nav span:hover,
.dash-nav .dash-active {
    color: navy;
    background: #f1f5f9;
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dash-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.dash-user-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.dash-user-email {
    font-size: 0.8rem;
    color: #64748b;
}

.dash-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: navy;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.dash-logout {
    font-size: 1.3rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    padding: 8px;
    border-radius: 8px;
}

.dash-logout:hover {
    color: #dc2626;
    background: #fef2f2;
}

/* Main Content */
.dash-main {
    padding: 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Welcome Section */
.dash-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 30px 40px;
    border-radius: 16px;
    color: white;
    margin-bottom: 30px;
}

.dash-welcome-text h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.dash-welcome-text p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.dash-welcome-stats {
    display: flex;
    gap: 30px;
}

.dash-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 15px 25px;
    border-radius: 12px;
    min-width: 100px;
    color:white
}

.dash-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.dash-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

/* Sections */
.dash-section {
    margin-bottom: 40px;
}

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

.dash-section-header h2 {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 600;
}

.dash-view-all {
    background: none;
    border: none;
    color: #3b82f6;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.dash-view-all:hover {
    text-decoration: underline;
    background: #eff6ff;
}

/* Events Grid */
.dash-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.dash-event-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
}

.dash-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.dash-event-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.dash-event-type {
    background: #e0e7ff;
    color: #4338ca;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dash-event-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dash-event-status:contains('Open') {
    background: #dcfce7;
    color: #166534;
}

.dash-event-card h3 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.dash-event-details p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 6px 0;
}

.dash-event-details i {
    width: 20px;
    color: #94a3b8;
}

.dash-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.dash-event-attendees {
    color: #64748b;
    font-size: 0.85rem;
}

.dash-join-btn {
    background: navy;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.dash-join-btn:hover {
    background: #1e3a8a;
}

.dash-joined-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: default;
    font-weight: 600;
}

/* Schools Grid */
.dash-schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.dash-school-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dash-school-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #e0e7ff;
    color: #4338ca;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dash-school-info {
    flex: 1;
}

.dash-school-info h3 {
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.dash-school-info p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 4px 0;
}

.dash-school-info i {
    width: 18px;
    color: #94a3b8;
}

.dash-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.dash-status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.dash-status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

/* Registrations List */
.dash-registrations-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.dash-registration-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

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

.dash-reg-info h4 {
    color: #1e293b;
    margin-bottom: 4px;
    font-weight: 600;
}

.dash-reg-info p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

/* Quick Actions */
.dash-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dash-action-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.dash-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}

.dash-action-card i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.dash-action-card h3 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 600;
}

.dash-action-card p {
    font-size: 0.85rem;
    color: #64748b;
}

/* Profile Card */
.dash-profile-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.dash-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: navy;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    flex-shrink: 0;
}

.dash-profile-info h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.dash-profile-info p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 6px 0;
}

.dash-profile-info i {
    width: 20px;
    color: #94a3b8;
    margin-right: 8px;
}

/* Footer */
.dash-footer {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
    font-size: 0.9rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
}

/* Responsive */
@media screen and (max-width: 899px) {
    .dash-top {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .dash-logo {
        justify-content: center;
    }
    
    .dash-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .dash-user {
        flex-direction: column;
        gap: 10px;
    }
    
    .dash-user-info {
        align-items: center;
    }
    
    .dash-main {
        padding: 20px;
    }
    
    .dash-welcome {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px 20px;
    }
    
    .dash-welcome-text h1 {
        font-size: 1.5rem;
    }
    
    .dash-welcome-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .dash-courses-grid,
    .dash-events-grid,
    .dash-schools-grid {
        grid-template-columns: 1fr;
    }
    
    .dash-quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dash-profile-card {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .dash-quick-actions {
        grid-template-columns: 1fr;
    }
    
    .dash-welcome-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .dash-stat-card {
        width: 100%;
        color: white;
    }
}

/* Filter Buttons */
.dash-filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dash-filter-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dash-filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.dash-filter-btn.active {
    background: navy;
    color: white;
    border-color: navy;
}

/* Stat Boxes */
.dash-stat-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.dash-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
    color: white;
}

.dash-stat-label {
    font-size: 0.9rem;
    color: white;
}

/* Modal */
.dash-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dash-modal {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.dash-modal h2 {
    margin-bottom: 10px;
    color: #1e293b;
}

.dash-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dash-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
}

.dash-modal-body {
    margin-bottom: 20px;
}

.dash-modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.dash-btn-cancel {
    padding: 10px 20px;
    background: #e2e8f0;
    color: #475569;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.dash-btn-primary {
    padding: 10px 20px;
    background: navy;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.dash-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dash-school-list {
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.dash-school-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.dash-school-checkbox:hover {
    background: #f8fafc;
}

.dash-school-checkbox input {
    width: 18px;
    height: 18px;
}

.dash-alert {
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.dash-alert.success {
    background: #dcfce7;
    color: #15803d;
}

.dash-alert.error {
    background: #fee2e2;
    color: #dc2626;
}

.school-input, .profile-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 5px;
}

.school-input:focus, .profile-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Full School Card */
.dash-school-card-full {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.dash-school-header-full {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dash-school-icon-full {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #e0e7ff;
    color: #4338ca;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dash-status-badge-full {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dash-status-badge-full.active {
    background: #dcfce7;
    color: #166534;
}

.dash-status-badge-full.pending {
    background: #fef3c7;
    color: #92400e;
}

/* Profile Styles */
.dash-profile-view {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.dash-profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: navy;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 3rem;
    margin: 0 auto 20px;
}

.profile-detail {
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.profile-detail:last-child {
    border-bottom: none;
}

.profile-detail label {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.profile-detail value {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 500;
}

.dash-profile-edit {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

/* Add School Form Styles */
.add-school-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

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

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

.form-input,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-submit-btn {
    background: navy;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit-btn:hover:not(:disabled) {
    background: #1e3a8a;
}

.form-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.form-cancel-btn {
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.form-cancel-btn:hover {
    background: #e2e8f0;
}

.alert-message {
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Events Page Styles */
.events-page-wrapper { min-height: 100vh; background: #f8fafc; }
.events-page-wrapper .main-content { padding: 20px 5%; max-width: 1400px; margin: 0 auto; }
.events-page-wrapper .page-header { text-align: center; margin-bottom: 40px; }
.events-page-wrapper .page-header h1 { font-size: 2.5rem; color: navy; margin-bottom: 10px; }
.events-page-wrapper .page-header p { font-size: 1.1rem; color: #64748b; }
.events-page-wrapper .filter-buttons { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }
.events-page-wrapper .filter-btn { padding: 10px 25px; border: 1px solid #e2e8f0; background: white; border-radius: 8px; cursor: pointer; font-weight: 500; transition: all 0.2s; }
.events-page-wrapper .filter-btn.active, .events-page-wrapper .filter-btn:hover { background: navy; color: white; border-color: navy; }
.events-page-wrapper .events-grid { display: flex; flex-direction: column; gap: 25px; }
.events-page-wrapper .event-card { display: flex; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s; border: 1px solid #eaeaea; }
.events-page-wrapper .event-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,128,0.1); }
.events-page-wrapper .event-date-badge { background: navy; color: white; width: 120px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; text-align: center; flex-shrink: 0; }
.events-page-wrapper .event-date-badge .month { font-size: 1.1rem; font-weight: 600; }
.events-page-wrapper .event-date-badge .day { font-size: 2rem; font-weight: 700; }
.events-page-wrapper .event-details { padding: 25px; flex: 1; }
.events-page-wrapper .event-type { display: inline-block; padding: 5px 12px; background: #e0e7ff; color: navy; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; }
.events-page-wrapper .event-details h3 { font-size: 1.5rem; color: #1e293b; margin-bottom: 10px; }
.events-page-wrapper .event-meta { display: flex; flex-direction: column; gap: 8px; color: #64748b; margin-bottom: 15px; }
.events-page-wrapper .event-meta span { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.events-page-wrapper .event-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; padding-top: 15px; border-top: 1px solid #e2e8f0; }
.events-page-wrapper .spots { color: #64748b; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.events-page-wrapper .register-btn { padding: 12px 30px; background: navy; color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.events-page-wrapper .register-btn:hover { background: #1e3a8a; }
.events-page-wrapper .registered-btn { padding: 12px 30px; background: #22c55e; color: white; border: none; border-radius: 8px; font-weight: 600; cursor: default; }
.events-page-wrapper .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.events-page-wrapper .modal-content { background: white; padding: 30px; border-radius: 16px; width: 90%; max-width: 500px; }
.events-page-wrapper .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.events-page-wrapper .modal-header h2 { color: navy; }
.events-page-wrapper .close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #64748b; }
.events-page-wrapper .modal-body .schools-list-modal { margin-top: 10px; max-height: 200px; overflow-y: auto; }
.events-page-wrapper .school-checkbox-item { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 8px; cursor: pointer; }
.events-page-wrapper .school-checkbox-item:hover { background: #f8fafc; }
.events-page-wrapper .school-checkbox-item input { width: 18px; height: 18px; }
.events-page-wrapper .modal-footer { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
.events-page-wrapper .cancel-btn { padding: 12px 24px; background: #f1f5f9; color: #475569; border: none; border-radius: 8px; cursor: pointer; }
.events-page-wrapper .confirm-btn { padding: 12px 24px; background: navy; color: white; border: none; border-radius: 8px; cursor: pointer; }
.events-page-wrapper .confirm-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.events-page-wrapper .alert-message.success { background: #dcfce7; color: #15803d; }
.events-page-wrapper .alert-message.error { background: #fee2e2; color: #dc2626; }