/* ================================
   EASY VOLUNTEER - LAYOUT STYLES
   Базові класи для лейаутів
   ================================ */

/* ===== COLOR VARIABLES ===== */
:root {
    --primary-teal: #1E5555;
    --primary-teal-hover: #2a6b6b;
    --primary-teal-light: #DFF2F2;
    --secondary-cyan: #A8E0E0;
    --text-dark: #1a3838;
    --text-muted: #5f7575;
    --bg-light: #F5FAFA;
    --border-gray: #D0E5E5;
}

/* ===== COMMON PAGE LAYOUT ===== */
.page-container {
    min-height: 100vh;
    background-color: white;
    overflow-x: hidden;
}

.page-gradient-bg {
    background: linear-gradient(to bottom right, var(--primary-teal-light), var(--secondary-cyan));
}

.section-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-wrapper {
        padding: 0 1.5rem;
    }
}

/* ===== HEADER STYLES ===== */
.page-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gray);
}

.page-header__navbar {
    padding: 0.75rem 1rem;
}

.page-header__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page-header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-teal) !important;
    text-decoration: none;
}

.page-header__logo:hover {
    color: var(--primary-teal) !important;
}

.page-header__navbar .nav-link {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.page-header__navbar .nav-link:hover {
    color: var(--primary-teal);
}

/* ===== UNIVERSAL BUTTON STYLES ===== */
.btn-primary {
    background-color: var(--primary-teal) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-teal-hover) !important;
    color: white !important;
    text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 2.5rem 1rem;
    background: linear-gradient(to bottom right, var(--primary-teal-light), var(--secondary-cyan));
}

@media (min-width: 768px) {
    .hero-section {
        padding: 4rem 1.5rem;
    }
}

.hero-section__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-section__title {
        font-size: 3rem;
    }
}

.hero-section__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-section__subtitle {
        font-size: 1.125rem;
    }
}

.hero-section__cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-section__cta {
        flex-direction: row;
    }
}

.hero-section__cta .btn-primary {
    padding: 0.9rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 0.5rem;
    letter-spacing: 0.01em;
}

@media (max-width: 639px) {
    .hero-section__cta .btn-primary {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
}

.hero-section__image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-section__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Slide indicators */
.slide-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slide-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.slide-indicator--active {
    width: 1.5rem;
    background-color: white;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 3.5rem 1rem;
    background-color: white;
}

@media (min-width: 768px) {
    .features-section {
        padding: 5rem 1.5rem;
    }
}

.features-section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.features-section__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .features-section__title {
        font-size: 2.25rem;
    }
}

.features-section__description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.features-section__grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .features-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .features-section__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    border: 1px solid var(--border-gray);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-teal-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.feature-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-card__description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== STATS SECTION ===== */
/* ===== STATS SECTION ===== */
.stats-section {
    padding: 1rem;
    background-color: #073D42;
    color: white;
}

@media (min-width: 576px) {
    .stats-section {
        padding: 1.25rem 1.5rem;
    }
}

/* --- Desktop layout (md+) --- */
.stats-desktop {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .stats-desktop {
        display: flex;
    }
}

.stats-desktop__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .stats-desktop__row { gap: 2rem; }
}

@media (min-width: 768px) {
    .stats-desktop__row { gap: 3rem; }
}

@media (min-width: 992px) {
    .stats-desktop__row { gap: 4rem; }
}

.stats-desktop__heading {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #99d8dd;
    width: 5rem;
    text-align: right;
    white-space: nowrap;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

@media (min-width: 576px) {
    .stats-desktop__heading {
        font-size: 10px;
        width: 6rem;
    }
}

.stats-desktop__cols {
    display: flex;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .stats-desktop__cols { gap: 2rem; }
}

@media (min-width: 768px) {
    .stats-desktop__cols { gap: 3rem; }
}

@media (min-width: 992px) {
    .stats-desktop__cols { gap: 4rem; }
}

.stats-desktop__col {
    width: 5rem;
    text-align: center;
}

@media (min-width: 576px) {
    .stats-desktop__col { width: 6rem; }
}

@media (min-width: 768px) {
    .stats-desktop__col { width: 7rem; }
}

.stats-desktop__num--current {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

@media (min-width: 576px) {
    .stats-desktop__num--current { font-size: 1.25rem; }
}

.stats-desktop__num--target {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stats-desktop__label {
    color: #cffafe;
    font-size: 9px;
    line-height: 1.25;
    margin-top: 0.25rem;
}

/* --- Mobile layout (hidden on md+) --- */
.stats-mobile {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-mobile { display: none; }
}

.stats-mobile__heading {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #99d8dd;
    margin-bottom: 0.5rem;
    text-align: center;
}

.stats-mobile__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
}

.stats-mobile__grid > div {
    text-align: center;
}

.stats-mobile__num--current {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.stats-mobile__num--target {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.stats-mobile__label--current {
    color: #cffafe;
    font-size: 8px;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.stats-mobile__label--target {
    color: #cffafe;
    font-size: 8px;
    line-height: 1.25;
    margin-top: 0.25rem;
}

/* ===== FOOTER ===== */
.page-footer {
    padding: 2rem 1rem;
    background-color: #111827;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .page-footer {
        padding: 2.5rem 1.5rem;
    }
}

.page-footer__tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .page-footer__tagline {
        font-size: 1rem;
    }
}

.page-footer__copyright {
    font-size: 0.75rem;
    color: #9CA3AF;
}

@media (min-width: 640px) {
    .page-footer__copyright {
        font-size: 0.875rem;
    }
}

/* ===== ORGANIZATION LAYOUT ===== */
.org-layout {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-light);
}

.org-sidebar {
    width: 16rem;
    background-color: white;
    border-right: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
}

.org-sidebar__logo {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
    flex-shrink: 0;
}

.org-sidebar__logo-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.org-sidebar__logo-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
    color: var(--primary-teal);
}

.org-sidebar__logo-text h2 {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.org-sidebar__logo-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.org-sidebar__nav {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.org-sidebar__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.org-nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: #374151;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    text-decoration: none;
}

.org-nav-item:hover {
    background-color: var(--bg-light);
}

.org-nav-item--active {
    color: white;
    background-color: var(--primary-teal);
}

.org-nav-item--active:hover {
    background-color: var(--primary-teal-hover);
}

.org-nav-item--sub {
    padding-left: 2.4rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.org-sidebar__footer {
    padding: 1rem;
    border-top: 1px solid var(--border-gray);
    flex-shrink: 0;
}

.org-sidebar__logout {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #DC2626;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
    text-decoration: none;
}

.org-sidebar__logout:hover {
    background-color: #FEE2E2;
    color: #DC2626;
}

.org-main {
    flex: 1;
    margin-left: 16rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.org-header {
    background: linear-gradient(to right, var(--primary-teal), var(--primary-teal-hover));
    color: white;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 16rem;
    right: 0;
    z-index: 20;
}

.org-header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.org-header__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.org-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.org-content {
    flex: 1;
    margin-top: 73px;
    padding: 2rem;
}

/* ===== VOLUNTEER LAYOUT (MOBILE-FIRST) ===== */
.volunteer-layout {
    min-height: 100vh;
    background-color: var(--bg-light);
    overflow-x: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.volunteer-header {
    background: linear-gradient(to right, var(--primary-teal), var(--primary-teal-hover));
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 1rem;
}

.volunteer-header__content {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.volunteer-header__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.volunteer-header__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.volunteer-header__subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.volunteer-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volunteer-content {
    min-height: calc(100vh - 8rem);
    max-width: 1150px;
    margin: 0 auto;
    padding: 1rem;
}

/* ===== PAGE TITLE ===== */
.vol-page-title {
    padding: 0.75rem 0 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-gray);
}

.vol-page-title__text {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.volunteer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid var(--border-gray);
    z-index: 30;
}

.volunteer-nav__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1150px;
    margin: 0 auto;
}

.volunteer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.25rem;
    color: var(--text-muted);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
    text-decoration: none;
    min-height: 64px;
    gap: 0.25rem;
}

.volunteer-nav-item:hover {
    color: var(--primary-teal);
}

.volunteer-nav-item--active {
    color: var(--primary-teal);
}

.volunteer-nav-item__label {
    font-size: 0.7rem;
    margin-top: 0;
    font-weight: 500;
    line-height: 1.2;
}

/* ===== CARD MODERN STYLES ===== */
.card-modern {
    border: 1px solid var(--border-gray);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.card-header-modern {
    background-color: var(--bg-light);
    padding: 1rem;
    border-bottom: 1px solid var(--border-gray);
    border-radius: 0.5rem 0.5rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.card-header-modern i {
    font-size: 1.25rem;
    color: var(--primary-teal);
}

/* ===== UTILITY CLASSES ===== */
.btn-primary {
    background-color: var(--primary-teal);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-teal-hover);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-teal);
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: 1px solid var(--border-gray);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    color: var(--primary-teal);
}

.text-primary {
    color: var(--primary-teal);
}

.text-muted {
    color: var(--text-muted);
}

.bg-primary-light {
    background-color: var(--primary-teal-light);
}

/* Bootstrap icons compatibility */
.bi {
    display: inline-block;
    vertical-align: middle;
}

/* Bottom nav icons sizing */
.volunteer-nav-item .bi {
    font-size: 1.5rem;
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
    content: "›";
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary-teal-hover);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== NAVBAR OVERRIDES ===== */
.navbar-toggler {
    margin-left: auto;
}

.navbar-dark.bg-primary {
    background: linear-gradient(to right, var(--primary-teal), var(--primary-teal-hover)) !important;
}

.navbar-dark .navbar-brand {
    color: white;
    font-weight: 600;
}

.navbar-dark .navbar-brand:hover {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: white;
    font-weight: 500;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 1050;
    width: calc(100% - 2rem);
    max-width: 420px;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-gray);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: slideUpCard 0.3s ease-out;
}

@keyframes slideUpCard {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-consent__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-consent__icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--primary-teal-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-teal);
}

.cookie-consent__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.cookie-consent__description {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.cookie-consent__link {
    color: var(--primary-teal);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent__link:hover {
    color: var(--primary-teal-hover);
}

.cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-consent__btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
    text-align: center;
}

.cookie-consent__btn--primary {
    background-color: var(--primary-teal);
    color: white;
}

.cookie-consent__btn--primary:hover {
    background-color: var(--primary-teal-hover);
}

.cookie-consent__btn--secondary {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
}

.cookie-consent__btn--secondary:hover {
    background-color: var(--bg-light);
}

/* ===== CALENDAR WIDGET ===== */
.calendar-widget {
    width: 100%;
    background-color: white;
    overflow-x: auto;
    overflow-y: hidden;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 0.5rem;
    width: 100%;
    min-width: 0;
}

.calendar-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    flex: 1;
}

.calendar-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    color: var(--primary-teal);
    background-color: var(--primary-teal-light);
    border: 1px solid var(--border-gray);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.calendar-nav-btn:hover {
    background-color: var(--secondary-cyan);
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    padding: 0 0.25rem;
    width: 100%;
    min-width: 0;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.25rem 0;
    text-transform: uppercase;
}

.calendar-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 0.25rem;
    padding: 0.25rem;
    width: 100% !important;
    min-width: 0 !important;
}

.calendar-day {
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-dark);
    background-color: white;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    padding: 0.25rem;
    min-width: 0;
    overflow: hidden;
}

.calendar-day:hover {
    background-color: var(--bg-light);
    color: var(--primary-teal);
    text-decoration: none;
}

.calendar-day--empty {
    pointer-events: none;
    background-color: transparent;
}

.calendar-day--today {
    background-color: var(--primary-teal-light);
    font-weight: 600;
}

.calendar-day--today:hover {
    background-color: var(--secondary-cyan);
}

.calendar-day--has-event .calendar-day-number {
    font-weight: 600;
    color: var(--primary-teal);
}

.calendar-day--selected {
    background-color: var(--primary-teal);
    color: white !important;
}

.calendar-day--selected:hover {
    background-color: var(--primary-teal-hover);
    color: white !important;
}

.calendar-day--selected .calendar-day-number {
    color: white !important;
}

.calendar-day-number {
    font-size: 0.75rem;
    line-height: 1;
}

.calendar-day-indicator {
    position: absolute;
    bottom: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary-teal);
}

.calendar-day--selected .calendar-day-indicator {
    background-color: white;
}

/* ===== EVENT CARDS ===== */
.event-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-gray);
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: white;
    min-height: 130px;
    position: relative;
}

.event-card__status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.6875rem;
    z-index: 1;
}

.event-card__spots {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    z-index: 1;
}

.ev-avail {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.625rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.ev-avail--open {
    background: var(--primary-teal-light, #e6f2f2);
    color: var(--primary-teal, #1e5555);
    border: 1.5px solid var(--primary-teal, #1e5555);
}

.ev-avail--full {
    background: #FEE2E2;
    color: #DC2626;
    border: 1.5px solid #FCA5A5;
}

.ev-avail--low {
    background: #FFEDD5;
    color: #9A3412;
    border: 1.5px solid #FB923C;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.event-card__thumb {
    width: 88px;
    height: 88px;
}

.event-card__thumb-img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 0.375rem;
}

.event-card__thumb-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 0.375rem;
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--secondary-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 1.75rem;
}

.event-card__content {
    min-width: 0;
}

.event-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card__organization {
    font-size: 0.8125rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card__datetime {
    font-size: 0.8125rem;
}

/* ===== VOLUNTEER PROFILE EDIT PAGE ===== */
.volunteer-profile-edit {
    min-height: 100vh;
    padding: 1.5rem 0;
    background-color: white;
}

.volunteer-profile-edit h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Profile Header Card */
.profile-header-card {
    background: linear-gradient(to right, var(--primary-teal) 0%, var(--primary-teal-hover) 100%);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    border: none;
    box-shadow: 0 2px 10px rgba(30, 85, 85, 0.1);
}

.profile-header-card__content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.profile-header-card__text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem 0;
}

.profile-header-card__text p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 0.95rem;
}

/* Nav Tabs Styling */
.nav-tabs {
    border-bottom: none;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.65rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    background-color: white;
    border: 1px solid var(--border-gray);
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 0.5rem;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
    background-color: white;
}

.nav-tabs .nav-link.active {
    color: white;
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    font-weight: 600;
}

/* Tab Content */
.tab-content {
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    box-shadow: none;
    border: 1px solid var(--border-gray);
}

.tab-pane {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Group Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control,
.form-select,
.form-control:disabled,
.form-select:disabled {
    border: 1px solid var(--border-gray);
    border-radius: 0.375rem;
    padding: 0.65rem 0.95rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: white;
    color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 2px rgba(30, 85, 85, 0.1);
    outline: none;
}

.form-control:disabled,
.form-select:disabled {
    background-color: #F9FAFB;
    color: var(--text-muted);
    cursor: not-allowed;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Form Text */
.form-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Form Hints */
.form-text.text-muted {
    color: rgba(193, 158, 12, 0.75) !important;
    font-size: 0.8rem;
}

/* Form Row Spacing */
.row {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.row > .col-md-12 {
    width: 100%;
}

.row > .col-md-6 {
    width: 100%;
}

.row > .col-md-4 {
    width: 100%;
}

@media (min-width: 768px) {
    .row > .col-md-6 {
        width: 50%;
    }

    .row > .col-md-4 {
        width: 33.333%;
    }
}

/* Field Containers */
.field-volunteerprofile-email {
    margin-bottom: 1.5rem;
}

/* Form Buttons */
.form-group .btn {
    padding: 0.85rem 2rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 0.95rem;
    border: 2px solid transparent;
    display: inline-block;
    margin-top: 1rem;
}

.form-group .btn-success {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
}

.form-group .btn-success:hover {
    background-color: var(--primary-teal-hover);
    border-color: var(--primary-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 85, 85, 0.3);
}

.form-group .btn-secondary {
    background-color: white;
    border-color: var(--border-gray);
    color: var(--text-dark);
    margin-left: 0.75rem;
}

.form-group .btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.form-group .btn-outline-secondary {
    color: var(--text-dark);
    border-color: var(--border-gray);
}

.form-group .btn-outline-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.form-group .btn-outline-primary {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.form-group .btn-outline-primary:hover {
    background-color: var(--primary-teal-light);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

/* Skills Tab Specific */
.skills-section {
    margin-bottom: 2rem;
}

.skills-section:last-child {
    margin-bottom: 0;
}

.skills-section h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.skills-section > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.skill-card {
    background-color: white;
    border: 2px solid var(--border-gray);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    font-weight: 600;
    color: var(--text-dark);
}

.skill-card:hover {
    border-color: var(--primary-teal);
    background-color: var(--primary-teal-light);
    color: var(--primary-teal);
    transform: translateY(-2px);
}

.skill-card.active {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 85, 85, 0.2);
}

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

/* Emergency Contact Form */
.emergency-card {
    background-color: transparent;
}

.emergency-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.emergency-info-alert {
    background-color: var(--primary-teal-light);
    border: 2px solid var(--secondary-cyan);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.emergency-info-alert p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Account Settings Tab */
.account-card {
    background-color: transparent;
}

.account-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: white;
    border: 1px solid var(--border-gray);
    border-radius: 0.75rem;
}

.account-section:last-child {
    margin-bottom: 0;
}

.account-section h6 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem 0;
}

.account-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.account-section .form-control-plaintext {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.account-section .mb-3 {
    margin-bottom: 1.5rem;
}

.account-section .d-grid {
    display: grid !important;
    gap: 0.75rem;
}

.account-section .d-grid.gap-2 {
    gap: 0.75rem;
}

.account-action-btn {
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 0.95rem;
    cursor: pointer;
}

.account-action-btn--danger {
    background-color: #e8c1c1;
    color: #747474;
    border: 2px solid #f9acac;
}

.account-action-btn--danger:hover {
    background-color: #ddb0b0;
    border-color: #f09090;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Danger Zone Styling */
.account-section:last-child {
    border: 1px solid #FECACA;
    background-color: #FEF2F2;
}

.account-section:last-child h6 {
    color: #DC2626;
}

/* Preferences Card Enhancement */
.preferences-card {
    background-color: transparent;
}

.preferences-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Availability Container Improvements */
.availability-container {
    background-color: white;
    border: 1px solid var(--border-gray);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.day-header {
    background-color: var(--primary-teal) !important;
    color: white !important;
    border-radius: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
}

.time-slot-item .btn-check + .btn {
    background-color: white;
    border-color: var(--border-gray);
    color: var(--text-dark);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.time-slot-item .btn-check + .btn:hover {
    border-color: var(--primary-teal);
    background-color: var(--primary-teal-light);
    color: var(--primary-teal);
}

.time-slot-item .btn-check:checked + .btn {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
    font-weight: 600;
}

/* Error and Success Messages */
.invalid-feedback,
.valid-feedback {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.invalid-feedback {
    color: #DC2626;
}

.valid-feedback {
    color: #059669;
}

/* Loading State */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .profile-header-card__content {
        flex-direction: column;
        text-align: center;
    }

    .volunteer-profile-edit h1 {
        font-size: 1.75rem;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    .volunteer-profile-edit {
        padding: 1rem 0;
    }

    .volunteer-profile-edit h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .nav-tabs {
        gap: 0.4rem;
        margin-bottom: 1.5rem;
        border-radius: 0;
    }

    .nav-tabs .nav-link {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .tab-content {
        padding: 1.5rem 1.25rem;
        border-radius: 0.5rem;
    }

    .profile-header-card {
        padding: 1.5rem 1rem;
        border-radius: 0.5rem;
    }

    .profile-header-card__content {
        gap: 1.25rem;
    }

    .profile-header-card__avatar {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        overflow: hidden;
        border-radius: 50%;
    }

    .profile-header-card__text h2 {
        font-size: 1.25rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .row {
        margin-bottom: 1rem;
    }

    .form-group .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        display: inline-block;
        margin-top: 0.75rem;
    }

    .form-group .btn-secondary {
        margin-left: 0.5rem;
        margin-top: 0.75rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .account-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .availability-container {
        padding: 1rem;
    }

    .day-column {
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .volunteer-profile-edit h1 {
        font-size: 1.25rem;
    }

    .nav-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 0.75rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .profile-header-card {
        padding: 1.25rem;
    }

    .profile-header-card__content {
        flex-direction: column;
        gap: 1rem;
    }

    .profile-header-card__avatar {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        overflow: hidden;
        border-radius: 50%;
    }

    .profile-header-card__text h2 {
        font-size: 1.25rem;
    }

    .tab-content {
        padding: 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .form-group .btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
        width: 100%;
        margin-left: 0;
    }

    .form-group .btn-secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .account-section {
        padding: 1rem;
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
    .calendar-widget {
        margin-bottom: 1rem;
    }

    .event-card {
        margin-bottom: 1rem;
    }
}

/* ===== MAP VIEW ===== */
#event-map {
    width: 100%;
    border-radius: 0.5rem;
    z-index: 1;
}

/* Custom marker styles */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 30px;
    height: 42px;
    position: relative;
    background-color: var(--primary-teal);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.marker-pin::after {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-marker.registered .marker-pin {
    background-color: #28a745;
}

/* Map popup styles */
.event-map-popup {
    min-width: 200px;
    max-width: 280px;
}

.event-map-popup h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event-map-popup .small {
    font-size: 0.875rem;
}

.leaflet-popup-content-wrapper {
    border-radius: 0.5rem;
    padding: 0;
}

.leaflet-popup-content {
    margin: 1rem;
    font-family: inherit;
}

.leaflet-popup-tip {
    background-color: white;
}

/* Latest Events Section */
.latest-events-section {
    border-top: 2px solid var(--border-gray);
}

.latest-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

/* Map container */
.volunteer-events-map .card {
    border: 1px solid var(--border-gray);
    border-radius: 0.5rem;
    overflow: hidden;
}

/* ===== EVENT VIEW PAGE STYLES ===== */
.volunteer-event-view {
    background-color: var(--bg-light);
    min-height: 100vh;
}

.volunteer-event-view .section-wrapper {
    background-color: transparent;
}

/* Breadcrumb styling for event view */
.volunteer-event-view .breadcrumb {
    margin-bottom: 2rem;
}

/* Modal enhancements */
.modal {
    z-index: 1050 !important;
}

.modal-content {
    border: 1px solid var(--border-gray);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    z-index: 1040 !important;
}

.modal-backdrop.show {
    opacity: 1 !important;
}

.modal-header {
    background-color: white;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
}

/* Form controls styling */
.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--border-gray);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.form-check-input:checked {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.form-check-input:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.25rem rgba(30, 85, 85, 0.25);
}

/* Responsive adjustments for event view */
@media (max-width: 991px) {
    .event-detail-item {
        padding: 1rem;
    }

    .event-section {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-wrapper {
        padding: 0 0.75rem;
    }

    .event-section {
        padding: 1rem;
    }

    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-apply-card {
        position: static !important;
        margin-bottom: 1.5rem;
    }

    .sticky-top {
        position: static !important;
        top: auto !important;
    }
}

/* ===== MY EVENTS PAGE ===== */
.my-events-header {
    margin-bottom: 1.5rem;
}

.my-events-header h3 {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.my-events-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Empty State */
.my-events-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border-gray);
}

.my-events-empty__icon {
    margin-bottom: 1.5rem;
}

.my-events-empty__icon .bi {
    font-size: 3.5rem;
    color: var(--secondary-cyan);
}

.my-events-empty h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.my-events-empty p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Events List */
.my-events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Event Card */
.my-events-card {
    display: flex;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.my-events-card:hover {
    box-shadow: 0 4px 16px rgba(30, 85, 85, 0.08);
}

.my-events-card__accent {
    width: 4px;
    flex-shrink: 0;
}

.my-events-card__accent--success {
    background-color: #10b981;
}

.my-events-card__accent--warning {
    background-color: #f59e0b;
}

.my-events-card__accent--info {
    background-color: #3b82f6;
}

.my-events-card__accent--danger {
    background-color: #ef4444;
}

.my-events-card__accent--secondary {
    background-color: #9ca3af;
}

.my-events-card__body {
    flex: 1;
    padding: 1.25rem;
    min-width: 0;
}

/* Card Header */
.my-events-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.my-events-card__info {
    flex: 1;
    min-width: 0;
}

.my-events-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.my-events-card__title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.my-events-card__title a:hover {
    color: var(--primary-teal);
}

.my-events-card__org {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Status Badge */
.my-events-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.my-events-card__badge--success {
    background-color: #d1fae5;
    color: #065f46;
}

.my-events-card__badge--warning {
    background-color: #fef3c7;
    color: #92400e;
}

.my-events-card__badge--info {
    background-color: #dbeafe;
    color: #1e40af;
}

.my-events-card__badge--danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.my-events-card__badge--secondary {
    background-color: #f3f4f6;
    color: #4b5563;
}

/* Card Meta */
.my-events-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.my-events-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.my-events-card__meta-item .bi {
    font-size: 0.85rem;
    color: var(--primary-teal);
    opacity: 0.7;
}

/* Action Buttons */
.my-events-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.my-events-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.my-events-btn--outline {
    background: white;
    color: var(--primary-teal);
    border: 1.5px solid var(--primary-teal);
}

.my-events-btn--outline:hover {
    background: var(--primary-teal);
    color: white;
    text-decoration: none;
}

.my-events-btn--danger-outline {
    background: white;
    color: #dc2626;
    border: 1.5px solid #fca5a5;
}

.my-events-btn--danger-outline:hover {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #dc2626;
    text-decoration: none;
}

.my-events-btn--sm {
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
}

/* Ride Sharing Section */
.my-events-ride {
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border-gray);
}

.my-events-ride__header {
    margin-bottom: 0.75rem;
}

.my-events-ride__header h6 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.my-events-ride__header h6 .bi {
    color: var(--primary-teal);
}

.my-events-ride__hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Ride Option Buttons */
.my-events-ride__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.my-events-ride__option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border-gray);
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.my-events-ride__option .bi {
    font-size: 1.5rem;
}

.my-events-ride__option--request:hover {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1d4ed8;
}

.my-events-ride__option--request:hover .bi {
    color: #3b82f6;
}

.my-events-ride__option--offer:hover {
    border-color: var(--primary-teal);
    background: var(--primary-teal-light);
    color: var(--primary-teal);
}

.my-events-ride__option--offer:hover .bi {
    color: var(--primary-teal);
}

/* Ride Status Display */
.my-events-ride__status {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: white;
    border: 1px solid var(--border-gray);
}

.my-events-ride__status--request {
    border-left: 3px solid #3b82f6;
}

.my-events-ride__status--offer {
    border-left: 3px solid var(--primary-teal);
}

.my-events-ride__status-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.my-events-ride__status--request .my-events-ride__status-icon {
    background: #eff6ff;
    color: #3b82f6;
}

.my-events-ride__status--offer .my-events-ride__status-icon {
    background: var(--primary-teal-light);
    color: var(--primary-teal);
}

.my-events-ride__status-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.my-events-ride__status-info strong {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.my-events-ride__status-info small {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.my-events-ride__status-badge {
    display: inline-flex;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    width: fit-content;
}

.my-events-ride__status-badge--pending {
    background: #fef3c7;
    color: #92400e;
}

.my-events-ride__status-badge--matched {
    background: #d1fae5;
    color: #065f46;
}

.my-events-ride__status-badge--not_found {
    background: #fee2e2;
    color: #991b1b;
}

.my-events-ride__status-badge--available {
    background: #d1fae5;
    color: #065f46;
}

.my-events-ride__status-badge--cancelled {
    background: #f3f4f6;
    color: #4b5563;
}

.my-events-ride__status-actions {
    flex-shrink: 0;
    align-self: center;
}

/* Responsive */
@media (max-width: 576px) {
    .my-events-card__header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .my-events-card__badge {
        align-self: flex-start;
    }

    .my-events-card__meta {
        flex-direction: column;
        gap: 0.4rem;
    }

    .my-events-card__actions {
        flex-direction: column;
    }

    .my-events-btn {
        justify-content: center;
        width: 100%;
    }

    .my-events-ride__options {
        grid-template-columns: 1fr;
    }

    .my-events-ride__status {
        flex-direction: column;
        align-items: stretch;
    }

    .my-events-ride__status-actions {
        align-self: flex-start;
    }
}

/* ===== ORGANIZATION DASHBOARD ===== */
.org-dashboard {
    padding: 2rem;
    background-color: white;
    min-height: 100%;
}

.org-dashboard__container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Top Stats */
.org-top-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.org-top-stat {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s ease;
}

.org-top-stat:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-cyan);
}

.org-top-stat__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.5px;
}

.org-top-stat__value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin: 0;
}

/* Rating Section */
.org-rating-section {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 0.75rem;
    padding: 2rem;
}

.org-rating-section__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.org-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.org-rating__stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.org-rating__star {
    font-size: 1.75rem;
    transition: color 0.2s;
}

.org-rating__star--filled {
    color: #fbbf24;
}

.org-rating__star--empty {
    color: #d1d5db;
}

.org-rating__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 50px;
}

/* Two Column Layout */
.org-dashboard__two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.org-dashboard__column {
    min-width: 0;
}

/* Card Component */
.org-card {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.org-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.org-card__header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.org-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.org-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.org-card__link:hover {
    color: var(--primary-teal-hover);
    text-decoration: underline;
}

.org-card__body {
    padding: 1.5rem;
}

.org-empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem 1rem;
    margin: 0;
    font-size: 0.95rem;
}

/* Applications List */
.org-applications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.org-application-item {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.org-application-item:hover {
    background-color: white;
    border-color: var(--secondary-cyan);
}

.org-application-item__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-hover) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    overflow: hidden;
}

.org-application-item__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-application-item__main {
    flex: 1;
    min-width: 0;
}

.org-application-item__volunteer {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.2rem 0;
}

.org-application-item__event {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.org-application-item__action {
    flex-shrink: 0;
}

.org-application-item__action .btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
}

/* Upcoming Events List */
.org-upcoming-events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.org-upcoming-event-item {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    border: 1px solid var(--border-gray);
    display: flex;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.org-upcoming-event-item:hover {
    background-color: white;
    border-color: var(--secondary-cyan);
}

.org-upcoming-event-item__image {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--secondary-cyan) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 1.5rem;
}

.org-upcoming-event-item__content {
    flex: 1;
    min-width: 0;
}

.org-upcoming-event-item__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.35rem 0;
}

.org-upcoming-event-item__title a {
    color: var(--primary-teal);
    text-decoration: none;
}

.org-upcoming-event-item__title a:hover {
    text-decoration: underline;
}

.org-upcoming-event-item__meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.org-upcoming-event-item__meta .bi {
    font-size: 0.75rem;
}

.org-upcoming-event-item__applications {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.org-upcoming-event-item__applications .bi {
    font-size: 0.75rem;
}

/* Quick Actions Section */
.org-quick-actions-section {
    margin-top: 3rem;
}

.org-quick-actions-section__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.org-quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.org-quick-action-btn {
    min-width: 0;
}

.org-quick-action-btn__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border: 2px solid var(--border-gray);
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.org-quick-action-btn__link:hover {
    border-color: var(--primary-teal);
    background: var(--primary-teal-light);
    color: var(--primary-teal);
    transform: translateY(-4px);
}

.org-quick-action-btn__link i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    transition: all 0.3s ease;
}

.org-quick-action-btn__link:hover i {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .org-dashboard {
        padding: 1.5rem;
    }

    .org-top-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .org-dashboard__two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .org-quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .org-dashboard {
        padding: 1rem;
    }

    .org-top-stats {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.75rem;
    }

    .org-top-stat {
        padding: 1rem;
    }

    .org-top-stat__label {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .org-top-stat__value {
        font-size: 1.5rem;
    }

    .org-rating-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .org-rating {
        flex-wrap: wrap;
    }

    .org-dashboard__two-column {
        gap: 1.5rem;
    }

    .org-card__header {
        padding: 1rem;
    }

    .org-card__title {
        font-size: 1rem;
    }

    .org-card__body {
        padding: 1rem;
    }

    .org-application-item {
        padding: 0.75rem;
    }

    .org-upcoming-event-item {
        padding: 0.75rem;
    }

    .org-quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .org-quick-action-btn__link {
        padding: 1.5rem;
        gap: 0.75rem;
    }

    .org-quick-action-btn__link i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .org-dashboard {
        padding: 0.75rem;
    }

    .org-top-stats {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .org-top-stat {
        padding: 0.75rem;
    }

    .org-top-stat__label {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .org-top-stat__value {
        font-size: 1.25rem;
    }

    .org-rating-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .org-rating-section__title {
        font-size: 1rem;
    }

    .org-rating__star {
        font-size: 1.25rem;
    }

    .org-rating__value {
        font-size: 1.25rem;
    }

    .org-card__header {
        padding: 0.75rem;
    }

    .org-card__title {
        font-size: 0.95rem;
    }

    .org-card__body {
        padding: 0.75rem;
    }

    .org-application-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .org-application-item__avatar {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }

    .org-application-item__volunteer {
        font-size: 0.85rem;
    }

    .org-application-item__event {
        font-size: 0.7rem;
    }

    .org-upcoming-event-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .org-upcoming-event-item__image {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
        font-size: 1.25rem;
    }

    .org-quick-action-btn__link {
        padding: 1rem;
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .org-quick-action-btn__link i {
        font-size: 1.75rem;
    }
}

/* ================================
   EVENTS INDEX PAGE
   ================================ */

/* --- Stat Cards --- */
.ev-stat-card {
    background-color: var(--primary-teal-light);
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    text-align: center;
}

.ev-stat-card__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.ev-stat-card__value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

/* --- Rating Card --- */
.ev-rating-card {
    background-color: #fff;
    border: 1px solid var(--border-gray);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ev-rating-card__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ev-rating-card__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ev-rating-card__stars {
    display: flex;
    gap: 0.1rem;
    font-size: 1.4rem;
    color: #f5a623;
}

.ev-rating-card__value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.ev-rating-card__chevron {
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- Tabs --- */
.ev-tabs {
    border-bottom: 2px solid var(--border-gray);
    gap: 0;
}

.ev-tabs__btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.ev-tabs__btn.active {
    color: var(--primary-teal);
    border-bottom-color: var(--primary-teal);
    font-weight: 600;
}

.ev-tabs__btn:not(.active):hover {
    color: var(--text-dark);
}

/* --- Empty State --- */
.ev-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}

.ev-empty__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.ev-empty__text {
    font-size: 1rem;
}

/* --- Event Card --- */
.ev-card {
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ev-card__photo {
    height: 200px;
    overflow: hidden;
    background-color: var(--primary-teal-light);
}

.ev-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ev-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
}

.ev-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ev-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.ev-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

/* Status badge — outlined style */
.ev-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 0.4rem;
    border: 1.5px solid currentColor;
    white-space: nowrap;
    flex-shrink: 0;
}

.ev-card__badge--draft {
    color: #e07b39;
    border-color: #e07b39;
}

.ev-card__badge--pending_approval {
    color: #d97706;
    border-color: #d97706;
}

.ev-card__badge--scheduled {
    color: #0891b2;
    border-color: #0891b2;
}

.ev-card__badge--open_for_registration {
    color: #16a34a;
    border-color: #16a34a;
}

.ev-card__badge--registration_full {
    color: #2563eb;
    border-color: #2563eb;
}

.ev-card__badge--in_progress {
    color: #7c3aed;
    border-color: #7c3aed;
}

.ev-card__badge--completed {
    color: #374151;
    border-color: #374151;
}

.ev-card__badge--tracking_hours {
    color: #0891b2;
    border-color: #0891b2;
}

.ev-card__badge--finalized {
    color: #374151;
    border-color: #374151;
}

.ev-card__badge--cancelled {
    color: #dc2626;
    border-color: #dc2626;
}

.ev-card__badge--archived {
    color: #6b7280;
    border-color: #6b7280;
}

.ev-card__org {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
}

/* Meta rows */
.ev-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.ev-card__meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.ev-card__meta-row i {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Action buttons */
.ev-card__actions {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
}

.ev-card__action-form {
    flex: 1;
    display: flex;
}

.ev-card__btn-publish {
    flex: 1;
    background-color: #22c55e;
    border-color: #22c55e;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.ev-card__btn-publish:hover {
    background-color: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

.ev-card__btn-edit {
    flex: 1;
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.ev-card__btn-edit:hover {
    background-color: var(--primary-teal-hover);
    border-color: var(--primary-teal-hover);
    color: #fff;
}

/* ===== BOTTOM NAVIGATION (Mobile) ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
    height: 60px;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: 60px;
    padding: 8px 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #717182;
    width: 52px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
}

.bottom-nav-item i {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav-item span {
    text-align: center;
    letter-spacing: 0.117188px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bottom-nav-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.bottom-nav-item.active {
    color: #073D42;
}

.bottom-nav-item.active i {
    color: #073D42;
}

/* Adjust main content padding for mobile to account for bottom nav */
@media (max-width: 767.98px) {
    main#main {
        padding-bottom: 70px;
    }
}
