:root {
    --tchaco-red: #e30613;
    --tchaco-orange: #f6931f;
    --tchaco-dark: #0a0a0a;
    --tchaco-gray: #1a1a1a;
    --tchaco-light-gray: #f8f9fa;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: #fcfcfc;
    color: #212529;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ─── Premium Header / Navbar ───────────────────────── */
.navbar-custom {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 42px;
    object-fit: contain;
}

.nav-link-custom {
    font-weight: 600;
    color: var(--tchaco-dark) !important;
    padding: 0.5rem 1.2rem !important;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.nav-link-custom:hover {
    color: var(--tchaco-red) !important;
}

@media (min-width: 992px) {
    .nav-link-custom::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: var(--tchaco-red);
        transition: all 0.25s ease;
        transform: translateX(-50%);
    }

    .nav-link-custom:hover::after,
    .nav-link-custom.active::after {
        width: 70%;
    }
}

.btn-my-account {
    background: linear-gradient(135deg, var(--tchaco-red) 0%, var(--tchaco-orange) 100%);
    color: #ffffff !important;
    font-weight: 600;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.2);
    transition: all 0.3s ease;
}

.btn-my-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 6, 19, 0.35);
    color: #ffffff !important;
}

/* ─── Main Section ───────────────────────── */
main {
    flex-grow: 1;
}

/* ─── Carousel Slider ───────────────────────── */
.home-slider {
    position: relative;
    background-color: var(--tchaco-dark);
}
.carousel-item {
    height: 500px;
    min-height: 350px;
    background-position: center;
    background-size: cover;
    position: relative;
}
.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
}
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    z-index: 10;
    color: #ffffff;
    max-width: calc(100% - 24px);
    text-align: center;
}
@media (min-width: 768px) {
    .carousel-caption-custom {
        left: 12px;
        max-width: 600px;
        text-align: left;
    }
    .carousel-control-prev {
        left: 10px !important;
        width: 40px !important;
    }
    .carousel-control-next {
        right: 10px !important;
        width: 40px !important;
    }
}
@media (min-width: 1400px) {
    .carousel-control-prev {
        left: 40px !important;
        width: 50px !important;
    }
    .carousel-control-next {
        right: 40px !important;
        width: 50px !important;
    }
}
.carousel-caption-custom h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #f6931f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
    .carousel-caption-custom h2 {
        font-size: 3rem;
    }
}
.carousel-caption-custom p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .carousel-caption-custom p {
        font-size: 1.1rem;
    }
}
.btn-slider {
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}
.btn-slider-primary {
    background-color: var(--tchaco-red);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}
.btn-slider-primary:hover {
    background-color: #ff2a3b;
    transform: translateY(-2px);
}

/* ─── Events Grid ───────────────────────── */
.events-section {
    padding: 5rem 0;
    background-color: #fcfcfc;
}
.section-header {
    margin-bottom: 3.5rem;
}
.section-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    color: var(--tchaco-dark);
}
.section-header h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--tchaco-red);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.event-card {
    position: relative;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.event-card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}
.event-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.event-card:hover .event-card-img {
    transform: scale(1.05);
}
.event-card .date-badge {
    position: absolute;
    top: 15px;
    left: -5px;
    background-color: #000000;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 20px;
    z-index: 10;
    transform: skewX(-12deg);
    box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
}
.event-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    border-top: 1px solid #f1f1f1;
}
.event-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--tchaco-dark);
    /* margin-bottom: 0.75rem; */
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6rem;
    line-height: 1.3;
}
.event-card-location {
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 500;
}
.event-card-location i {
    color: var(--tchaco-red);
}

/* ─── Results Banner ───────────────────────── */
.results-banner {
    background: linear-gradient(135deg, #1a0000 0%, #4a0000 100%);
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
}
.results-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

/* ─── Our Services ───────────────────────── */
.services-section {
    background-color: #ffffff;
    padding: 5rem 0;
}
.service-card {
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}
.service-card:hover {
    border-color: var(--tchaco-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.05);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--tchaco-red);
    margin-bottom: 1.5rem;
}
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--tchaco-dark);
}
.service-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ─── Premium Footer ───────────────────────── */
.footer-sponsors-section {
    background-color: #ffffff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 2.5rem 0;
    overflow: hidden;
}

.sponsor-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.sponsor-marquee::before,
.sponsor-marquee::after {
    content: "";
    height: 100%;
    width: 80px;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.sponsor-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.sponsor-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.sponsor-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    animation: scrollMarquee 30s linear infinite;
    flex-wrap: nowrap;
    width: max-content;
}

.sponsor-track:hover {
    animation-play-state: paused;
}

.sponsor-logo-box {
    flex: 0 0 auto;
    width: 135px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: default;
}

.sponsor-logo-box:hover {
    transform: translateY(-3px);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sponsor-logo-box a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    transition: all 0.3s ease;
}

.sponsor-logo-box:hover img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}


.main-footer {
    background: #0a0a0c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 5rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--tchaco-orange);
    bottom: 0;
    left: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-list li i {
    margin-right: 0.75rem;
    color: var(--tchaco-orange);
    font-size: 1.1rem;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-contact-list li a:hover {
    color: var(--tchaco-orange);
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 0.8rem;
}

.footer-menu-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-menu-list li a:hover {
    color: var(--tchaco-orange);
    transform: translateX(5px);
}

.app-store-btns {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.store-btn {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.2s ease;
}

.store-btn:hover {
    background-color: #111111;
    border-color: var(--tchaco-orange);
    color: #ffffff;
}

.store-btn i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.store-btn-text span {
    display: block;
    font-size: 0.5rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.store-btn-text strong {
    font-size: 0.85rem;
    font-weight: 700;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 3rem 0 2rem 0;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: var(--tchaco-orange);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ─── Pagination ───────────────────────── */
.pagination-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    width: 100%;
}
.pagination-wrapper nav {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.pagination-wrapper nav > div:first-child {
    display: none !important; /* Hides mobile buttons wrapper */
}
.pagination-wrapper nav > div:last-child {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}
.pagination-wrapper nav > div:last-child > div:first-child {
    display: none !important; /* Hides "Showing 1 to 6 of 24 results" text on desktop */
}
.pagination-wrapper nav > div:last-child > div:last-child {
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
}
.pagination {
    margin-bottom: 0;
    justify-content: center;
    display: flex;
}
.pagination .page-item .page-link {
    color: var(--tchaco-dark);
    border: 1px solid #dee2e6;
    padding: 0.6rem 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.pagination .page-item.active .page-link {
    background-color: var(--tchaco-red);
    border-color: var(--tchaco-red);
    color: #ffffff;
}
.pagination .page-item .page-link:hover {
    background-color: var(--tchaco-light-gray);
    color: var(--tchaco-red);
}

/* ─── Full Page Loader ───────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

/* ─── Logo Animation ───────────────────────── */
.loader-logo {
    width: 280px;
    max-width: 70%;
    animation: logoPulse 1.6s ease-in-out infinite;
}

@keyframes logoPulse {
    0% {
        opacity: 0.3;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.98);
    }
}

/* ─── Event Detail Hero ───────────────────────── */
.event-hero {
    position: relative;
    height: 400px;
    background-color: var(--tchaco-dark);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    overflow: hidden;
}

.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3.5rem;
    width: 100%;
}

.event-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.event-hero-meta i {
    color: var(--tchaco-orange);
    margin-right: 0.4rem;
}

/* ─── Detail Cards ───────────────────────── */
.detail-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 2.2rem;
    margin-bottom: 2rem;
}

.detail-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--tchaco-red);
    color: var(--tchaco-dark);
}

/* ─── Event Sidebar ───────────────────────── */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sidebar-info-card {
    background: var(--tchaco-gray);
    color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--tchaco-orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.sidebar-price-tag small {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.sidebar-meta-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.sidebar-meta-list li:last-child {
    border-bottom: none;
}

.sidebar-meta-list li i {
    width: 20px;
    text-align: center;
    color: var(--tchaco-orange);
}

/* ─── Organizer Profile ───────────────────────── */
.organizer-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--tchaco-light-gray);
    border-radius: 12px;
}

.organizer-icon {
    width: 48px;
    height: 48px;
    background: var(--tchaco-dark);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* ─── Document Links ───────────────────────── */
.doc-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    transition: all 0.2s ease;
    text-decoration: none !important;
    color: inherit !important;
}

.doc-link-item:hover {
    background-color: var(--tchaco-light-gray);
    border-color: var(--tchaco-orange);
    transform: translateX(4px);
}

.doc-link-item i {
    font-size: 1.25rem;
    color: var(--tchaco-red);
}

/* ─── Modalities Tags ───────────────────────── */
.modality-badge {
    background: var(--tchaco-dark);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 0.5rem;
}

/* ─── Public Results Styling ────────────────── */
.rs-pagination .page-item .page-link {
    color: var(--tchaco-dark);
    border: 1px solid #eaeaea;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.rs-pagination .page-item.active .page-link {
    background-color: var(--tchaco-red);
    border-color: var(--tchaco-red);
    color: #ffffff !important;
}

.rs-pagination .page-item:not(.active) .page-link:hover {
    background-color: #f5f5f5;
    color: var(--tchaco-red);
}

.rs-pagination .page-item.disabled .page-link {
    color: #ccc;
    background-color: #fafafa;
}

.search-trigger:focus, 
.filter-trigger:focus {
    border-color: var(--tchaco-red);
    box-shadow: 0 0 0 0.25rem rgba(153, 0, 0, 0.1);
}



/* ─── Price & Category Layout ───────────────────────── */
.modality-pricing-group {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    background-color: #ffffff;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.modality-pricing-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tchaco-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-table th {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.5px;
    background-color: var(--tchaco-light-gray);
    padding: 0.75rem 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.pricing-table td {
    padding: 1.1rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.gender-male {
    color: #17a2b8 !important; /* Soft premium turquoise/cyan */
    font-weight: 600;
}

.gender-female {
    color: #ff758f !important; /* Soft premium pink/rose */
    font-weight: 600;
}

.gender-mixed {
    color: #2ec4b6 !important; /* Premium teal for mixed */
    font-weight: 600;
}

.price-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--tchaco-dark);
}

.pricing-row-active {
    background-color: rgba(246, 147, 31, 0.015);
}

.pricing-row-expired {
    opacity: 0.55;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
}

.badge-gender-male {
    background-color: rgba(23, 162, 184, 0.08) !important;
    color: #0d6efd !important;
    border: 1px solid rgba(23, 162, 184, 0.15) !important;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-gender-female {
    background-color: rgba(255, 117, 143, 0.08) !important;
    color: #dc3545 !important;
    border: 1px solid rgba(255, 117, 143, 0.15) !important;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-gender-mixed {
    background-color: rgba(46, 196, 182, 0.08) !important;
    color: #198754 !important;
    border: 1px solid rgba(46, 196, 182, 0.15) !important;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.category-name {
    color: #000000 !important;
    font-weight: 600;
}

/* ─── Calendar Page Styles ───────────────────────── */
.calendar-weekdays-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    border-bottom: 2px solid #f1f3f5;
    padding-bottom: 10px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-cell {
    aspect-ratio: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #f1f3f5;
    font-weight: 600;
    font-size: 0.95rem;
    color: #212529;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.calendar-day-cell:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.calendar-day-cell.other-month {
    color: #adb5bd;
    background-color: #fafbfc;
    opacity: 0.5;
}

.calendar-day-cell.today {
    border: 2px solid var(--tchaco-red, #e30613);
    color: var(--tchaco-red, #e30613);
    font-weight: 800;
}

.calendar-day-cell.has-event {
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.calendar-day-cell.has-event:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.calendar-day-cell.selected-day {
    outline: 3px solid rgba(0, 0, 0, 0.15);
    outline-offset: -3px;
}

/* Event Indicator Dot */
.event-dots-container {
    position: absolute;
    bottom: 6px;
    display: flex;
    gap: 3px;
    justify-content: center;
    width: 100%;
}

.event-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ffffff;
}

/* Event List Styling */
.calendar-event-card {
    border-left: 5px solid #dee2e6;
    transition: all 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-event-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.calendar-event-badge {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    color: #ffffff;
    text-transform: uppercase;
    display: inline-block;
}

.event-card-link-icon {
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.calendar-event-card:hover .event-card-link-icon {
    opacity: 1;
    color: var(--tchaco-red, #e30613);
}

/* Custom Scrollbar */
.events-list-scroll::-webkit-scrollbar {
    width: 6px;
}
.events-list-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.events-list-scroll::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}
.events-list-scroll::-webkit-scrollbar-thumb:hover {
    background: #ced4da;
}

/* ─── Participant List Styles ───────────────────────── */
.participants-group [aria-expanded="true"] .collapse-icon {
    transform: rotate(180deg);
}
.participants-group .collapse-icon {
    transition: transform 0.2s ease;
}
.participant-table th {
    font-weight: 700;
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
}





