/* =======================
   Root Variables
======================= */
:root {
    --base-color: #d19a33;

    /* Using HCL fallback values */
    --brand-h: 36;
    --brand-c: 60%;
    --brand-l: 55%;

    --brand: hsl(var(--brand-h), 60%, var(--brand-l));
    --brand-dark: hsl(var(--brand-h), 60%, calc(var(--brand-l) - 15%));
    --brand-light: hsl(var(--brand-h), 60%, calc(var(--brand-l) + 10%));

    --text-main: hsl(0, 0%, 10%);
    --text-muted: hsl(0, 0%, 50%);
    --bg: hsl(0, 0%, 98%);
    --bg-dark: hsl(0, 0%, 10%);
    --border: hsl(0, 0%, 90%);
    --text-brand: hsl(from var(--base-color) h s calc(l + 10));
}

/* LIGHT THEME (default) */
:root,
[my-theme="light"] {
    --bg: hsl(0, 0%, 88%);
    --bg-dark: hsl(0, 0%, 10%);
    --text-main: hsl(0, 0%, 10%);
    --text-muted: hsl(0, 0%, 50%);
    --border: hsl(0, 0%, 90%);
    --brand: hsl(var(--brand-h), 60%, var(--brand-l));
    --brand-dark: hsl(var(--brand-h), 60%, calc(var(--brand-l) - 15%));
    --brand-light: hsl(var(--brand-h), 60%, calc(var(--brand-l) + 10%));
    --overlay-bg: rgba(255, 255, 255, 0.5);
    --shadow-default: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* DARK THEME */
[my-theme="dark"] {
    --bg: hsl(0, 0%, 10%);
    --bg-dark: hsl(0, 0%, 5%);
    --text-main: hsl(0, 0%, 90%);
    --text-muted: hsl(0, 0%, 50%);
    --border: hsl(0, 0%, 20%);
    --brand: hsl(var(--brand-h), 60%, calc(var(--brand-l) + 10%));
    --brand-dark: hsl(var(--brand-h), 60%, var(--brand-l));
    --brand-light: hsl(var(--brand-h), 60%, calc(var(--brand-l) + 20%));
    --overlay-bg: rgba(0, 0, 0, 0.7);
    --shadow-default: 0 4px 20px rgba(0, 0, 0, 0.3);
}


/* =======================
   Reset & Base
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* =======================
   Header Containers
======================= */
.header {
    width: 100%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* -----------------------
   Nav1: Logo + Menu + Auth
------------------------ */
.nav1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 35px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-main);
    padding: 6px 10px;
    transition: 0.2s;
}

.nav-menu a:hover {
    color: var(--brand-dark);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-auth a {
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: 0.2s;
}

.nav-auth .login {
    color: var(--brand);
}

.nav-auth .signup {
    background-color: var(--brand);
    color: white;
}

/* -----------------------
   Nav2: Centered Search
------------------------ */
.nav2 {
    display: flex;
    justify-content: center;
    padding: 12px 20px;
    background: var(--bg);
}

.search-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    border: 1px solid var(--border);
    border-radius: 25px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    outline: none;
    background-color: var(--bg-light);
    color: var(--text-brand);
}

.search-form button {
    background: var(--brand);
    color: white;
    padding: 0 20px;
    border: none;
    font-weight: 600;
}

header,
.nav1,
.navbar {
    background-color: var(--bg);
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
}

/* =======================
   Responsive Layout
======================= */
.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: var(--text-main);
}

.mobile-user-icon {
    display: none;
    font-size: 22px;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-auth {
        display: none;
    }

    .mobile-user-icon {
        display: block;
    }

    .nav1 {
        justify-content: space-between;
    }

    .nav-left {
        gap: 10px;
    }

    .search-form {
        max-width: 100%;
    }
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-main);
    padding: 6px 10px;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--brand-dark);
    border-bottom: 2px solid var(--brand);
}

.nav-menu a.active {
    color: var(--brand);
    border-bottom: 2px solid var(--brand);
}

/* Hover for Login button */
.nav-auth .login:hover {
    color: var(--border);
    background-color: var(--brand-dark);
}

.nav-auth a,
.nav-menu a,
button {
    transition: all 0.3s ease;
}

/* Hover for Sign Up button */
.nav-auth .signup:hover {
    background-color: var(--brand-dark);
}

/* Hover for Search Button */
.search-form button:hover {
    background: var(--brand-dark);
}

/* Hover for Footer Form Button */
.footer-form button:hover {
    background: var(--brand-dark);
}

/* Active state for Nav Menu links */
.nav-menu a.active {
    color: var(--brand-dark);
    border-bottom: 2px solid var(--brand-dark);
}

/* Hover effect for nav links */
.nav-menu a:hover {
    color: var(--brand-dark);
}

/* Toggle Switch Container */
.theme-toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.theme-toggle-label {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 50px;
    height: 26px;
    background: var(--bg-dark);
    border-radius: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1000;
}

.toggle-ball {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--brand);
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3.5a1 1 0 0 1 1 1V5a1 1 0 0 1-2 0v-.5a1 1 0 0 1 1-1zm4.02 1.78a1 1 0 0 1 1.414 0l.354.354a1 1 0 0 1-1.414 1.414l-.354-.354a1 1 0 0 1 0-1.414zM18.5 11h.5a1 1 0 1 1 0 2h-.5a1 1 0 1 1 0-2zm-1.68 5.48a1 1 0 0 1-.354.353l-.354.354a1 1 0 1 1-1.414-1.414l.354-.354a1 1 0 0 1 1.414 1.414zm-5.82 1.52a1 1 0 0 1 1 1v.5a1 1 0 1 1-2 0v-.5a1 1 0 0 1 1-1zm-4.02-1.78a1 1 0 0 1-.354 1.414l-.354-.354a1 1 0 0 1 1.414-1.414zm-1.78-4.02a1 1 0 0 1-1-1H5a1 1 0 1 1 0 2h-.5zm1.78-4.02a1 1 0 0 1 0-1.414l.354-.354a1 1 0 0 1 1.414 1.414l-.354.354z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.theme-toggle-input:checked+.theme-toggle-label {
    background: var(--brand-light);
}

.theme-toggle-input:checked+.theme-toggle-label .toggle-ball {
    transform: translateX(24px);
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12.79A9 9 0 0 1 11.21 3c0 .3.02.61.05.91A7 7 0 1 0 20.1 14.25c.3.03.61.05.9.05zm-9.5-8a7 7 0 0 0 0 14c3.87 0 7-3.13 7-7a7 7 0 0 0-7-7z"/></svg>');
}

.theme-toggle-label:hover {
    background-color: var(--brand-dark);
}

.toggle-ball:hover {
    filter: brightness(1.2);
}

body,
header,
.nav1,
.nav2,
.footer-dark {
    transition: background-color 0.3s, color 0.3s;
}

.footer-custom {
    background-color: var(--bg-light);
    color: var(--text-muted);
    padding: 40px 0 20px;
    font-size: 14px;
}

.footer-custom h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.footer-logo-wrap {
    text-align: center;
}

.footer-logo {
    max-height: 50px;
}

.footer-custom ul {
    padding-left: 0;
}

.footer-custom ul li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-custom ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-custom ul li a:hover {
    color: var(--brand);
}

.footer-form input[type="email"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--bg-light);
    color: var(--text-main);
}

.form-control,
.form-select {
    background-color: var(--bg);
    color: var(--text-brand);
    border: 1px solid var(--brand-light);

}

.form-control::file-selector-button {
    background-color: var(--bg);
    color: var(--brand-light);
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.form-control::file-selector-button:hover {
    background-color: var(--brand-light) !important;
    color: var(--bg) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: none;
    outline: none;
    background-color: var(--bg);
    color: var(--text-brand);
}

::placeholder {
    color: var(--brand-light);
    font-style: italic;
    opacity: 1;
}

.input-group-text {
    background-color: var(--brand);
    color: var(--text-main);
}

.custom-table,
table,
tr,
td,
tbody,
thead,
th {
    background-color: var(--bg) !important;
    color: var(--text-main) !important;
    border-color: var(--text-main);
}

.form-control::placeholder,
.form-select::placeholder {
    color: var(--brand-light);
}

.footer-form button {
    background-color: var(--brand);
    border: none;
    padding: 8px 16px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.footer-form button:hover {
    background-color: var(--brand-dark);
}

.footer-bottom {
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-section {
    position: relative;
    height: 85vh;
    background: url('../../files/images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-bg);
    transition: background 0.3s ease;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 2rem;
    color: var(--text-main);
}

[data-theme="dark"] .hero-content {
    color: #fff;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Button Group */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* CTA Button */
.btn-cta {
    background-color: var(--brand);
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
}


.btn-outline-main {
    border: 1px solid var(--base-color);
    color: var(--base-color);
}

.btn-outline-main:hover {
    background-color: var(--base-color);
}

.btn-main {
    background-color: var(--base-color);
}

.btn-main:hover {
    background-color: var(--brand-dark);
}

/* Secondary Button */
.btn-cta2 {
    background-color: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta2:hover {
    background-color: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-cta,
    .btn-cta2 {
        padding: 0.6rem 1.4rem;
        font-size: 0.95rem;
    }
}

.category-section {
    padding: 4rem 1rem;
    background-color: var(--bg);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.category-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.category-card {
    flex: 0 0 auto;
    width: 160px;
    scroll-snap-align: start;
}

.category-grid::-webkit-scrollbar {
    display: none;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.category-overlay h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.category-card:hover .category-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Dark theme */
[my-theme="dark"] .category-section {
    background-color: var(--bg-dark);
}

[my-theme="dark"] .section-title {
    color: var(--text-main);
}

.top-events-section {
    padding: 3rem 0;
}

.event-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg);
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.2s;
}

.event-card:hover {
    transform: translateY(-4px);
}

.event-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.event-info {
    padding: 1rem;
}

.event-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.event-date,
.event-location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.swiper {
    padding-bottom: 2.5rem;
}

.swiper-slide {
    width: 260px;
}

.latest-events-section {
    padding: 3rem 0;
}

.latest-events-carousel .event-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.latest-events-carousel .event-card:hover {
    transform: translateY(-4px);
}

.event-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.event-info {
    padding: 1rem;
}

.event-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.support-cta-section {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 4rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-default);
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 960px;
}


.support-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-cta-section h2 em {
    font-style: italic;
}

.support-cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #ccc;
}

.support-cta-section a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 500;
}

.support-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.support-item {
    flex: 1 1 200px;
    max-width: 300px;
    text-align: center;
}

.support-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(67%) sepia(36%) saturate(663%) hue-rotate(351deg) brightness(97%) contrast(93%);
}

.support-item h4,
.support-cta-section h2 {
    font-size: 1.1rem;
    color: var(--text-brand);
}

.support-item:hover img {
    filter: brightness(1.2);
}

/* Optional text hover color */
.support-item h4 {
    font-size: 1.1rem;
    color: var(--text-brand);
    transition: color 0.3s ease;
}

.support-item:hover h4 {
    color: var(--brand);
}

.about-cta-section {
    background: linear-gradient(to bottom right, var(--brand), var(--brand-dark));
    color: #fff;
    padding: 40px 1px;
}

.about-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
}

.about-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-cta-section .btn-cta {
    background: #fff;
    color: var(--brand);
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.about-cta-section .btn-cta:hover {
    background: var(--text-brand);
    color: var(--brand-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-page-section {
    padding: 4rem 1rem;
    background: var(--bg);
    color: var(--text-main);
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(99, 72, 44, 0.216);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg);
    outline: none;
    border: 1px solid var(--base-color);
    color: var(--text-brand);
    border-radius: 6px;
    font-size: 1rem;
}

.contact-social {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.instagram-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: var(--brand);
    text-decoration: none;
}

.instagram-link:hover {
    text-decoration: underline;
}

.instagram-link i {
    margin-right: 0.5rem;
}

.create-event-info-section {
    padding: 4rem 1rem;
    background: var(--bg-light);
    color: var(--text-main);
}

.event-guidelines {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.event-guidelines h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.guideline-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.guideline-list li {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.guideline-list strong {
    color: var(--text-brand);
}

.note {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.how-it-works-section {
    padding: 4rem 1rem;
    background: var(--bg-light);
    color: var(--text-main);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--brand);
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-box {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--brand-dark);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    color: var(--text-main);
}

.cta-box h2 {
    margin-bottom: 1rem;
}

/* General pagination link styles */
.page-link {
    position: relative;
    display: block;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    color: var(--brand-dark);
    text-decoration: none;
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    transition: all 0.15s ease-in-out;
}

.page-link:hover {
    z-index: 2;
    color: #fff;
    background-color: var(--brand-light);
    border-color: var(--brand-light);
}

.page-link:focus {
    z-index: 3;
    outline: none;
    color: #fff;
    background-color: var(--brand);
    box-shadow: 0 0 0 0.25rem rgba(209, 154, 51, 0.25);
    /* use base-color with alpha */
}

.page-item.active .page-link,
.page-link.active {
    z-index: 3;
    color: #fff;
    background-color: var(--brand);
    border-color: var(--brand);
    font-weight: 600;
}

.page-link.disabled,
.disabled>.page-link {
    color: var(--text-muted);
    background-color: var(--bg);
    border-color: var(--border);
    pointer-events: none;
    opacity: 0.6;
}

/* Border cleanup between items */
.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}

/* Rounded ends for first and last */
.page-item:first-child .page-link {
    border-top-left-radius: 999rem;
    border-bottom-left-radius: 999rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 999rem;
    border-bottom-right-radius: 999rem;
}

.pagination {
    gap: 0.4rem;
    flex-wrap: wrap;
}

.page-link:hover {
    box-shadow: var(--shadow-default);
}

.dataTables_wrapper .dataTables_paginate {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.event-category-badge {
    background: #eee;
    color: #333;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

/* Default: show nav menu and auth on large screens */
.nav-menu,
.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hide toggle button on large screens */
.nav-toggle {
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Hide navs by default */
    .nav-menu,
    .nav-auth {
        display: none;
        flex-direction: column;
        background: var(--bg);
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 10px;
        z-index: 10;
    }

    .nav-menu.active,
    .nav-auth.active {
        display: flex;
    }

    /* Show the hamburger only on mobile */
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        margin-right: 10px;
    }

    .mobile-user-icon {
        display: inline-block;
    }
}
