:root {
    --al-primary: #006494;
    --al-primary-dark: #003f5f;
    --al-primary-light: #0496d4;
    --al-accent: #00c9ff;
    --al-surface: #ffffff;
    --al-bg: #f0f6fb;
    --al-text: #1a2a35;
    --al-text-muted: #607d8b;
    --al-border: #dde8ef;
    --al-radius: 14px;
    --al-radius-sm: 8px;
    --al-shadow: 0 4px 24px rgba(0, 100, 148, 0.10);
    --al-shadow-lg: 0 12px 40px rgba(0, 100, 148, 0.18);
    --status-draft-bg: #eceff1;
    --status-draft-color: #546e7a;
    --status-scheduled-bg: #e1f5fe;
    --status-scheduled-color: #0277bd;
    --status-inprogress-bg: #fff3e0;
    --status-inprogress-color: #e65100;
    --status-completed-bg: #fff8e1;
    --status-completed-color: #f57f17;
    --status-cancelled-bg: #fce4ec;
    --status-cancelled-color: #c62828;
    --status-archived-bg: #efebe9;
    --status-archived-color: #4e342e;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    background: var(--al-bg);
    color: var(--al-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main { flex: 1; }


/* ═══════════════════════════ NAVBAR ═══════════════════════════ */

.al-navbar {
    background: linear-gradient(110deg, #003f5f 0%, #006494 55%, #0496d4 100%);
    box-shadow: 0 2px 20px rgba(0,64,100,0.35);
    height: 66px;
    line-height: 66px;
}

.al-brand {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-family: 'Exo 2', sans-serif !important;
    font-size: 1.35rem !important;
    color: #fff !important;
    text-decoration: none;
}

.al-brand-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bob 3.5s ease-in-out infinite;
}

.al-brand-icon .material-icons-round { font-size: 20px; color: #fff; }

.al-brand-text strong { font-weight: 900; }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.al-nav-links li a {
    color: rgba(255,255,255,0.88) !important;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
}

.al-nav-cta.no-margin {
    margin: 0 !important;
}

.al-nav-links li a:hover { color: #fff !important; }

.al-nav-links li a.al-nav-cta {
    background: rgba(255,255,255,0.15);
    border-radius: 24px;
    margin: 12px 8px;
    padding: 0 18px;
    transition: background 0.2s;
}

.al-nav-links li a.al-nav-cta:hover { background: rgba(255,255,255,0.28); }

.al-sidenav {
    background: linear-gradient(180deg, #003f5f 0%, #006494 100%);
}

.al-sidenav li a {
    color: rgba(255,255,255,0.9) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.al-sidenav li a:hover { background: rgba(255,255,255,0.12) !important; }

.al-sidenav-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 20px 16px;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}


/* ═══════════════════════════ TOASTS ═══════════════════════════ */

.al-toast-success,
.al-toast-error {
    position: fixed;
    top: 76px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--al-radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow: var(--al-shadow-lg);
    animation: slideIn 0.35s ease;
    max-width: 420px;
}

.al-toast-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #43a047; }
.al-toast-error   { background: #fce4ec; color: #c62828; border-left: 4px solid #ef5350; }

.al-toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    margin-left: auto;
    display: flex;
    align-items: center;
    padding: 0;
}

.al-toast-close:hover { opacity: 1; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}


/* ═══════════════════════════ HERO (galería) ═══════════════════════════ */

.al-hero {
    position: relative;
    background: linear-gradient(140deg, #002d47 0%, #006494 45%, #0496d4 80%, #00c9ff 100%);
    padding: 90px 0 130px;
    overflow: hidden;
}

.al-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0,201,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(4,150,212,0.2) 0%, transparent 40%);
}

.al-hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.al-hero-bubbles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    animation: rise linear infinite;
}

.al-hero-bubbles span:nth-child(1) { width: 80px; height: 80px; left: 10%; bottom: -80px; animation-duration: 9s; animation-delay: 0s; }
.al-hero-bubbles span:nth-child(2) { width: 40px; height: 40px; left: 30%; bottom: -40px; animation-duration: 7s; animation-delay: 1.5s; }
.al-hero-bubbles span:nth-child(3) { width: 60px; height: 60px; left: 55%; bottom: -60px; animation-duration: 11s; animation-delay: 0.8s; }
.al-hero-bubbles span:nth-child(4) { width: 30px; height: 30px; left: 70%; bottom: -30px; animation-duration: 6s; animation-delay: 2s; }
.al-hero-bubbles span:nth-child(5) { width: 100px; height: 100px; left: 82%; bottom: -100px; animation-duration: 13s; animation-delay: 0.3s; }
.al-hero-bubbles span:nth-child(6) { width: 50px; height: 50px; left: 45%; bottom: -50px; animation-duration: 8s; animation-delay: 3s; }

@keyframes rise {
    to { transform: translateY(-120vh); opacity: 0; }
}

.al-hero-content {
    position: relative;
    z-index: 2;
}

.al-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 24px;
    padding: 5px 16px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.al-hero-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.al-hero-highlight {
    color: #00e5ff;
    position: relative;
}

.al-hero-desc {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 0 36px;
    line-height: 1.6;
}

.al-hero-stats {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 60px;
    padding: 14px 30px;
    gap: 24px;
}

.al-hero-stat { text-align: center; }

.al-hero-stat-num {
    display: block;
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.al-hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.al-hero-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.2);
}

.al-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.al-hero-wave svg { display: block; width: 100%; height: 80px; }


/* ═══════════════════════════ GALLERY ═══════════════════════════ */

.al-gallery { padding: 40px 0 80px; }

.al-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.al-section-header h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--al-primary-dark);
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    margin: 0;
}

.al-section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--al-primary-light), transparent);
    border-radius: 2px;
}


/* ═══════════════════════════ CARDS ═══════════════════════════ */

.al-card {
    background: var(--al-surface);
    border-radius: var(--al-radius);
    overflow: hidden;
    box-shadow: var(--al-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    margin-bottom: 24px;
    border: 1px solid var(--al-border);
}

.al-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--al-shadow-lg);
}

.al-card.status-cancelled { opacity: 0.6; filter: grayscale(50%); }

.al-card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(135deg, #006494, #00c9ff);
}

.al-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.al-card:hover .al-card-img { transform: scale(1.07); }

.al-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,20,35,0.55) 0%, transparent 60%);
}

.al-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.al-card-img-placeholder .material-icons-round {
    font-size: 64px;
    color: rgba(255,255,255,0.5);
}

.al-card-top-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.al-card-status-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.al-card-status-badge .material-icons-round { font-size: 14px; }

.al-badge-category {
    background: rgba(0,201,255,0.85);
    color: #003f5f;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.al-badge-level {
    background: rgba(255,183,0,0.88);
    color: #3e2200;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.al-card-body { padding: 20px 22px 16px; }

.al-card-name {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--al-primary-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}

.al-card-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 8px;
}

.al-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--al-text-muted);
}

.al-card-meta .material-icons-round { font-size: 15px; color: var(--al-primary-light); }

.al-card-location {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.82rem;
    color: var(--al-text-muted);
    margin-bottom: 10px;
}

.al-card-location .material-icons-round { font-size: 15px; color: var(--al-primary-light); flex-shrink: 0; }

.al-card-desc {
    font-size: 0.84rem;
    color: var(--al-text-muted);
    line-height: 1.5;
    margin: 0 0 16px;
}

.al-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--al-primary);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s, color 0.2s;
    border-top: 1px solid var(--al-border);
    padding-top: 14px;
    width: 100%;
}

.al-card-btn:hover { gap: 10px; color: var(--al-primary-light); }


/* ═══════════════════════════ STATUS PILLS ═══════════════════════════ */

.al-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.al-status-pill .material-icons-round { font-size: 14px; }

.al-status-pill.status-draft      { background: var(--status-draft-bg);      color: var(--status-draft-color); }
.al-status-pill.status-scheduled  { background: var(--status-scheduled-bg);  color: var(--status-scheduled-color); }
.al-status-pill.status-inprogress { background: var(--status-inprogress-bg); color: var(--status-inprogress-color); }
.al-status-pill.status-completed  { background: var(--status-completed-bg);  color: var(--status-completed-color); }
.al-status-pill.status-cancelled  { background: var(--status-cancelled-bg);  color: var(--status-cancelled-color); }
.al-status-pill.status-archived   { background: var(--status-archived-bg);   color: var(--status-archived-color); }


/* ═══════════════════════════ ADMIN HEADER ═══════════════════════════ */

.al-admin-header {
    background: linear-gradient(110deg, #003f5f 0%, #006494 60%, #0496d4 100%);
    padding: 40px 0 0;
}

.al-admin-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.al-admin-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}

.al-admin-sub { color: rgba(255,255,255,0.72); margin: 0; font-size: 0.92rem; }

.al-counters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 32px;
}

.al-counter {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--al-radius-sm);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 100px;
    flex: 1;
    transition: background 0.2s;
}

.al-counter:hover { background: rgba(255,255,255,0.18); }

.al-counter .material-icons-round { font-size: 20px; color: var(--accent); }

.al-counter-num {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.al-counter-label { font-size: 0.7rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; }

.al-admin-body { padding: 32px 0 80px; }


/* ═══════════════════════════ TABLE ═══════════════════════════ */

.al-table-wrap {
    background: var(--al-surface);
    border-radius: var(--al-radius);
    box-shadow: var(--al-shadow);
    overflow: hidden;
    border: 1px solid var(--al-border);
}

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

.al-table thead tr {
    background: linear-gradient(90deg, #003f5f, #006494);
}

.al-table thead th {
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 16px 14px;
    white-space: nowrap;
}

.al-table tbody tr {
    border-bottom: 1px solid var(--al-border);
    transition: background 0.15s;
}

.al-table tbody tr:last-child { border-bottom: none; }
.al-table tbody tr:hover { background: #f0f8fb; }

.al-table td { padding: 14px 14px; vertical-align: middle; }

.al-td-id { color: var(--al-text-muted); font-size: 0.82rem; width: 40px; }

.al-td-name strong { display: block; font-size: 0.92rem; color: var(--al-text); }
.al-td-loc { display: flex; align-items: center; gap: 2px; font-size: 0.78rem; color: var(--al-text-muted); margin-top: 2px; }
.al-td-loc .material-icons-round { font-size: 13px; }

.al-td-date span { display: block; font-size: 0.88rem; }
.al-td-time { color: var(--al-text-muted); font-size: 0.78rem; }

.al-chip-cat {
    background: #e1f5fe;
    color: #0277bd;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.al-chip-lvl {
    background: #fff8e1;
    color: #f57f17;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.al-td-transitions, .al-td-actions { white-space: nowrap; }


/* ═══════════════════════════ ACTION BUTTONS ═══════════════════════════ */

.al-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    margin: 2px;
}

.al-action-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.al-action-btn .material-icons-round { font-size: 18px; }

.al-action-btn.view    { background: #e3f2fd; color: #1565c0; }
.al-action-btn.edit    { background: #e8f5e9; color: #2e7d32; }
.al-action-btn.delete  { background: #fce4ec; color: #c62828; }
.al-action-btn.publish { background: #e1f5fe; color: #0277bd; }
.al-action-btn.start   { background: #fff3e0; color: #e65100; }
.al-action-btn.finish  { background: #fff8e1; color: #f57f17; }
.al-action-btn.archive { background: #efebe9; color: #4e342e; }
.al-action-btn.cancel  { background: #fce4ec; color: #c62828; }


/* ═══════════════════════════ MAIN BUTTONS ═══════════════════════════ */

.al-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0496d4, #006494);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(4,150,212,0.35);
    transition: box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.3px;
}

.al-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(4,150,212,0.45); }
.al-btn-primary.edit { background: linear-gradient(135deg, #43a047, #2e7d32); box-shadow: 0 4px 18px rgba(67,160,71,0.35); }
.al-btn-primary.edit:hover { box-shadow: 0 8px 24px rgba(67,160,71,0.45); }

.al-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--al-text-muted) !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid var(--al-border);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.al-btn-ghost:hover { border-color: var(--al-primary); color: var(--al-primary) !important; }


/* ═══════════════════════════ FORM PAGE ═══════════════════════════ */

.al-form-page { padding: 40px 0 80px; }

.al-form-header { margin-bottom: 28px; }

.al-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--al-text-muted) !important;
    font-size: 0.86rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.al-back-link:hover { color: var(--al-primary) !important; }

.al-form-title-block {
    display: flex;
    align-items: center;
    gap: 18px;
}

.al-form-title-block h4 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    color: var(--al-primary-dark);
    margin: 0 0 4px;
}

.al-form-title-block p { color: var(--al-text-muted); font-size: 0.9rem; margin: 0; }

.al-form-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.al-form-icon-wrap.create { background: linear-gradient(135deg, #0496d4, #006494); }
.al-form-icon-wrap.edit   { background: linear-gradient(135deg, #43a047, #2e7d32); }
.al-form-icon-wrap .material-icons-round { color: #fff; font-size: 28px; }

.al-form-card {
    background: var(--al-surface);
    border-radius: var(--al-radius);
    box-shadow: var(--al-shadow-lg);
    border: 1px solid var(--al-border);
    padding: 36px 40px;
}

.al-form-errors {
    background: #fce4ec;
    color: #c62828;
    border-radius: var(--al-radius-sm);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 0.88rem;
}

.al-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
}

.al-field-icon {
    margin-top: 26px;
    color: var(--al-primary-light);
    font-size: 22px !important;
    flex-shrink: 0;
}

.al-input-inner { flex: 1; }

.al-field-error {
    display: block;
    font-size: 0.78rem;
    color: #c62828;
    margin-top: 2px;
}

.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 2px solid var(--al-primary) !important;
    box-shadow: 0 1px 0 0 var(--al-primary) !important;
}

.input-field label.active { color: var(--al-primary) !important; }
.input-field .prefix.active { color: var(--al-primary) !important; }

.al-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--al-border);
    flex-wrap: wrap;
}


/* ═══════════════════════════ SHOW PAGE ═══════════════════════════ */

.al-show-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.al-show-hero.status-draft      { background: linear-gradient(135deg, #455a64, #78909c); }
.al-show-hero.status-scheduled  { background: linear-gradient(135deg, #0277bd, #29b6f6); }
.al-show-hero.status-inprogress { background: linear-gradient(135deg, #e65100, #ff9800); }
.al-show-hero.status-completed  { background: linear-gradient(135deg, #f57f17, #ffc107); }
.al-show-hero.status-cancelled  { background: linear-gradient(135deg, #b71c1c, #ef5350); }
.al-show-hero.status-archived   { background: linear-gradient(135deg, #4e342e, #8d6e63); }

.al-show-hero-img-wrap {
    position: absolute;
    inset: 0;
}

.al-show-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.al-show-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,15,30,0.75) 0%, rgba(0,15,30,0.2) 70%, transparent 100%);
}

.al-show-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
    padding-top: 80px;
    width: 100%;
}

.al-show-hero-content .al-back-link { color: rgba(255,255,255,0.85) !important; }
.al-show-hero-content .al-back-link:hover { color: #fff !important; }

.al-show-badges {
    display: flex;
    gap: 8px;
    margin: 16px 0 10px;
}

.al-show-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin: 0 0 14px;
    line-height: 1.15;
}

.al-show-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 0.3px;
}

.al-show-body { padding: 40px 0 80px; }

.al-show-card {
    background: var(--al-surface);
    border-radius: var(--al-radius);
    box-shadow: var(--al-shadow);
    border: 1px solid var(--al-border);
    padding: 32px;
}

.al-show-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: var(--al-primary-dark);
    margin: 0 0 24px;
}

.al-show-section-title .material-icons-round { color: var(--al-primary-light); }

.al-show-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.al-show-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--al-bg);
    border-radius: var(--al-radius-sm);
    border: 1px solid var(--al-border);
}

.al-show-info-item > .material-icons-round {
    color: var(--al-primary-light);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.al-info-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--al-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.al-info-val {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--al-text);
}

.al-show-desc-block {
    background: var(--al-bg);
    border-radius: var(--al-radius-sm);
    border: 1px solid var(--al-border);
    padding: 20px;
}

.al-show-desc-block h6 {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--al-primary-dark);
    font-weight: 700;
    margin: 0 0 10px;
}

.al-show-desc-block h6 .material-icons-round { color: var(--al-primary-light); font-size: 18px; }
.al-show-desc-block p { color: var(--al-text-muted); line-height: 1.7; margin: 0; font-size: 0.95rem; }

.al-show-actions-card {
    background: var(--al-surface);
    border-radius: var(--al-radius);
    box-shadow: var(--al-shadow);
    border: 1px solid var(--al-border);
    padding: 24px;
    position: sticky;
    top: 80px;
}

.al-show-actions-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: var(--al-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
}

.al-show-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--al-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    margin-bottom: 8px;
    transition: transform 0.15s, box-shadow 0.15s;
    text-align: left;
}

.al-show-action-btn:hover { transform: translateX(3px); }

.al-show-action-btn.edit    { background: #e8f5e9; color: #2e7d32; }
.al-show-action-btn.view    { background: #e3f2fd; color: #1565c0; }
.al-show-action-btn.publish { background: #e1f5fe; color: #0277bd; }
.al-show-action-btn.start   { background: #fff3e0; color: #e65100; }
.al-show-action-btn.finish  { background: #fff8e1; color: #f57f17; }
.al-show-action-btn.archive { background: #efebe9; color: #4e342e; }
.al-show-action-btn.cancel  { background: #fce4ec; color: #b71c1c; }
.al-show-action-btn.delete  { background: #ffebee; color: #c62828; font-weight: 700; }

.al-show-divider { height: 1px; background: var(--al-border); margin: 16px 0; }


/* ═══════════════════════════ EMPTY STATE ═══════════════════════════ */

.al-empty {
    padding: 80px 20px;
    color: var(--al-text-muted);
}

.al-empty .material-icons-round {
    font-size: 64px;
    display: block;
    margin: 0 auto 16px;
    color: #b0bec5;
}

.al-empty h5 { color: var(--al-text-muted); margin-bottom: 8px; }


/* ═══════════════════════════ FOOTER ═══════════════════════════ */

.al-footer {
    background: linear-gradient(110deg, #002d47 0%, #003f5f 50%, #006494 100%);
    margin-top: auto;
}

.al-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.al-footer-brand .material-icons-round { color: #00c9ff; }
.al-footer-sub { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin: 4px 0 0; }

.al-footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    margin-left: 20px;
    transition: color 0.2s;
}

.al-footer-link:hover { color: #fff; }

.al-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}


/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */

@media (max-width: 600px) {
    .al-hero-title { font-size: 2.1rem; }
    .al-hero-stats { flex-direction: column; border-radius: 16px; gap: 12px; }
    .al-hero-stat-divider { width: 40px; height: 1px; }
    .al-admin-header-inner { flex-direction: column; align-items: flex-start; }
    .al-form-card { padding: 24px 18px; }
    .al-show-info-grid { grid-template-columns: 1fr; }
    .al-show-title { font-size: 1.6rem; }
    .al-counters { gap: 6px; }
    .al-counter { min-width: 80px; padding: 10px 12px; }
    .al-counter-num { font-size: 1.3rem; }
}
