/* ProgramNarOT Font (program-narrow) */
@font-face {
    font-family: 'program-narrow';
    src: url('fonts/ProgramNarOT-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'program-narrow';
    src: url('fonts/ProgramNarOT-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'program-narrow';
    src: url('fonts/ProgramNarOT-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Program Font (program) - if needed */
@font-face {
    font-family: 'program';
    src: url('fonts/ProgramNarOT-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'program';
    src: url('fonts/ProgramNarOT-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'program';
    src: url('fonts/ProgramNarOT-Medium.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Millie's Logo Font */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Montserrat:wght@400;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: white !important;
    margin: 0;
    padding: 0;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: white !important;
    z-index: 999;
    pointer-events: none;
}

:root {
    /* Millie's Brand Colors */
    --primary-color: #FF69B4; /* Pink/Magenta brand color */
    --secondary-color: #FF8C42; /* Orange accent color */
    --accent-color: #FF69B4;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --orange-bg: #f4aa27; /* Yellow/Orange background */
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background-color: var(--orange-bg);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 70px; /* Account for fixed header */
    background-color: var(--orange-bg);
    position: relative;
}

/* Landing page specific - blue background */
body.landing-page {
    background-color: #86c3ea !important;
}

body.landing-page .page-wrapper {
    background-color: #86c3ea !important;
}

body.landing-page .hero-nav-bar {
    background: #86c3ea !important;
    margin-top: -20px !important;
}

body.landing-page .container {
    background-color: transparent !important;
}

body.landing-page main {
    background-color: transparent !important;
}

body.admin-page,
.admin-page-wrapper {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-left: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Top Navigation Bar */
.top-navbar {
    width: 100%;
    background: white !important;
    height: 70px;
    position: fixed !important;
    z-index: 1000 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    overflow: visible;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-navbar:after {
    display: none;
}

.navbar-container {
    width: 1300px;
    max-width: 94%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1001;
    background: white;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.millies-logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.middle-nav {
    position: absolute;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    display: flex;
    justify-content: center;
    width: calc(100% - 261px);
    align-items: center;
    justify-content: space-between;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.top-nav-middle {
    width: 16.6667%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-family: program-narrow, sans-serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #f481a7;
    position: relative;
    transition: color 0.4s ease;
    -webkit-tap-highlight-color: rgba(244, 129, 167, 0.2);
    touch-action: manipulation;
}

.top-nav-middle:hover {
    color: #EF4C81;
}

.order-button {
    min-width: 125px;
    color: #fff;
    padding: 0 15px;
    height: auto;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.18px;
    font-family: program-narrow, sans-serif;
    font-size: 27px;
    font-weight: 500;
    text-decoration: none;
    margin-left: auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background-color: #ef4b81;
    transition: all 0.4s ease;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-top: -3px;
    -webkit-tap-highlight-color: rgba(239, 75, 129, 0.3);
    touch-action: manipulation;
}

.order-button:hover {
    background-color: #EF4C81;
    transform: translateY(-2px);
}

/* Main Hero Header - Matches Image Design */
.main-hero-header {
    width: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
    left: 0;
    right: 0;
    position: relative;
}

.hero-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
}

.calendar-header-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    max-height: 85vh;
    margin: 0;
    padding: 0;
    margin-top: -10px;
    margin-bottom: -50px;
    position: relative;
    z-index: 1;
}

/* Landing page - same as calendar header image */
body.landing-page .calendar-header-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    max-height: 85vh;
    margin: 0;
    padding: 0;
    margin-top: -10px;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}


.hero-main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

.hero-nav-bar {
    width: 100%;
    background: var(--orange-bg);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    margin-top: -50px;
    z-index: 2;
    padding-top: 50px;
    min-height: 120px;
    display: block;
    visibility: visible;
}

.event-name-bar-inner {
    width: 100%;
    position: relative;
}

/* Slick Slider Base Styles */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: block;
    float: none;
    height: 100%;
    min-height: 1px;
    flex-shrink: 0;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Font References */
.program {
    font-family: program-narrow, sans-serif;
    font-weight: 400;
}

.program.medium {
    font-family: program-narrow, sans-serif;
    font-weight: 500;
}

.program.black {
    font-family: program-narrow, sans-serif;
    font-weight: 900;
}

.program.ot.black {
    font-family: program, sans-serif;
    font-weight: 900;
}

.program.ot.bold {
    font-family: program, sans-serif;
    font-weight: 700;
}

.event-type-name {
    color: rgba(255, 255, 255, 0.6);
    font-family: program-narrow, sans-serif;
    font-weight: 500;
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 80px;
    white-space: nowrap;
    transition: font-weight 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-style: normal;
    height: 100%;
    min-height: 1px;
    visibility: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1.2;
    vertical-align: middle;
}

.event-type-name.slick-current,
.event-type-name.slick-active,
.event-type-name.slick-center {
    font-weight: 900;
    font-style: normal;
    color: white;
    position: relative;
}


/* Cloned items for seamless loop - no additional styling needed */

/* Header Styles for other pages */
header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 2px;
}

header h1.millies-logo {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.admin-logo {
    max-height: 120px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

header h1.uppercase-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

nav {
    margin-top: 20px;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* Main Content */
main {
    flex: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--border-color);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content p {
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    background-color: #FF1493;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background-color: var(--text-light);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--text-color);
}

.btn-danger {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.calendar-link {
    text-align: center;
    margin: 40px 0;
}

/* Calendar Section */
.calendar-section {
    background: transparent;
    border-radius: 12px;
    padding: 30px;
    box-shadow: none;
}

.calendar-content-section {
    background: transparent;
    padding: 40px;
    padding-left: 0;
    border-radius: 12px;
    margin-top: -20px;
}

/* Month Header Wrapper */
.month-header-wrapper {
    position: relative;
    margin-bottom: 30px;
    margin-left: 0;
    width: 100%;
    height: 60px;
    overflow: visible;
}

.month-nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
    font-weight: 300;
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    font-family: 'program-narrow', sans-serif;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.month-nav-btn:first-of-type {
    left: calc(50% - 200px);
}

.month-nav-btn:last-of-type {
    right: calc(50% - 200px);
}

.month-nav-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%);
}

.month-nav-btn:active {
    opacity: 0.7;
    transform: translateY(-50%);
}

.calendar-controls {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Events Container */
.events-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.calendar-content-section .events-container {
    background: transparent;
}

/* Landing Page Styles */
.landing-section {
    padding: 20px 20px 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.landing-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.landing-button {
    background: #86c3ea;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-decoration: none;
    text-align: center;
    font-family: 'program-narrow', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.landing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(134, 195, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 1;
}

.landing-button:hover::before {
    background: rgba(134, 195, 234, 0.2);
}

.landing-button .button-text {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.landing-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.landing-button:active {
    transform: translateY(-2px);
}

.button-text {
    display: block;
}

@media (max-width: 1024px) {
    .landing-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .landing-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .landing-button {
        padding: 40px 20px;
        font-size: 1.3rem;
        min-height: 180px;
    }
}

/* Events Section */
.events-section {
    margin-bottom: 40px;
    margin-left: 0;
    position: relative;
}

.section-header {
    font-family: 'program-narrow', sans-serif;
    font-weight: 900;
    color: white;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    pointer-events: none;
}

.month-header {
    font-size: 3rem;
}

/* Events Tiles Grid */
.events-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start;
    margin-left: 0;
    width: 100%;
}

/* Event Tile */
.event-tile {
    position: relative;
    width: calc((100% - 75px) / 4);
    min-width: 240px;
    min-height: 450px;
    border-radius: 12px;
    overflow: visible;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.event-tile.no-image {
    background-color: white;
    background-image: url('images/cone pink light.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 450px;
}

.event-tile.no-image:hover {
    height: auto;
    min-height: 450px;
}

.event-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.event-tile-expansion {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-radius: 0 0 12px 12px;
    z-index: 3;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.event-tile:hover .event-tile-expansion {
    max-height: 400px;
}

.event-tile-expansion-content {
    padding: 25px;
    color: var(--text-color);
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.event-tile:hover .event-tile-expansion-content {
    opacity: 1;
}

.event-tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.event-tile.no-image .event-tile-overlay {
    background: transparent;
}

.event-tile-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: white;
}

.event-tile.no-image .event-tile-content {
    color: #ef4b81;
}

.event-tile-title {
    font-family: 'program-narrow', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: white;
    line-height: 1.2;
}

.event-tile.no-image .event-tile-title {
    color: #ef4b81;
}

.event-tile-date-time {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
    font-family: 'program-narrow', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
}

.event-tile-date {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.event-tile-time {
    font-weight: 400;
    opacity: 0.9;
}

.event-tile.no-image .event-tile-time {
    opacity: 1;
    color: #ef4b81;
}

.event-tile.no-image .event-tile-date {
    color: #ef4b81;
}

.event-tile-description-preview {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 10px 0 0 0;
}

.event-tile-description-full {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 15px 0;
}

.event-tile.no-image .event-tile-description-preview {
    color: #ef4b81;
}

.event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.event-badge {
    display: inline-block;
    background: #ef4b81;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-family: 'program-narrow', sans-serif;
    font-weight: 500;
    color: white;
}

.add-to-calendar-btn {
    display: inline-block;
    background: #ef4b81;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'program-narrow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.add-to-calendar-btn:hover {
    background: #ef4b81;
    opacity: 0.9;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(239, 75, 129, 0.3);
}

.event-tile-location-wrapper {
    margin-top: 15px;
    margin-bottom: 10px;
    display: block;
}

.event-tile-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'program-narrow', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    z-index: 10;
    position: relative;
    padding: 8px 0;
}

.location-pin {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
}

.location-address {
    display: inline-block;
    flex: 1;
    line-height: 1.6;
}

.event-tile-location:hover {
    color: #ef4b81;
}

.event-tile-location:hover .location-address {
    text-decoration: underline;
}

/* Event Card (legacy - keeping for compatibility) */
.event-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 20px;
    transition: box-shadow 0.3s;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.event-card:hover {
    box-shadow: var(--shadow);
}

.event-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.event-content {
    flex: 1;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date-time {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.event-description {
    color: var(--text-color);
    margin-bottom: 15px;
}

.event-actions {
    display: flex;
    gap: 10px;
}

.event-actions button {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: var(--card-bg);
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.close:hover {
    color: var(--text-color);
}

#modal-title {
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.time-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-selector select {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
}

.time-selector select:first-child {
    width: 100px;
}

.time-selector select:nth-child(3) {
    width: 100px;
}

.time-selector select:last-child {
    width: 80px;
}

.time-separator {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
    vertical-align: middle;
}

.event-card.featured-event {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.2);
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 25px;
}

.photo-preview {
    margin-top: 10px;
}

.photo-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 6px;
    margin-top: 10px;
}

.loading {
    text-align: center;
    padding: 40px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.empty-state h3 {
    margin-bottom: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

/* Admin Styles */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
}

.login-container {
    max-width: 450px;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(239, 75, 129, 0.15);
    border: 1px solid rgba(239, 75, 129, 0.1);
    text-align: center;
}

.login-container .admin-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.login-form {
    margin-top: 30px;
}

.login-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #ef4b81;
    box-shadow: 0 0 0 3px rgba(239, 75, 129, 0.1);
}

.login-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.login-divider span {
    padding: 0 15px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background-color: #ffffff;
    color: #3c4043;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-google svg {
    flex-shrink: 0;
}

.error-message {
    color: #d32f2f;
    background-color: #ffebee;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.admin-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(239, 75, 129, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.admin-header-top .admin-logo {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.logout-btn {
    margin-left: auto;
    padding: 10px 20px;
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #ef4b81;
    color: white;
    border-color: #ef4b81;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 75, 129, 0.3);
}

.admin-section {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(239, 75, 129, 0.1);
    border: 1px solid rgba(239, 75, 129, 0.1);
}

.admin-welcome {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #ef4b81 0%, #ff6b9d 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 4px 20px rgba(239, 75, 129, 0.3);
}

.welcome-icon {
    font-size: 3.5rem;
    margin-bottom: 10px;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.welcome-title {
    font-family: 'program-narrow', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    margin: 10px 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 300;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(239, 75, 129, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(239, 75, 129, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4b81 0%, #ff6b9d 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(239, 75, 129, 0.3);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-family: 'program-narrow', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #ef4b81;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-header-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(239, 75, 129, 0.1);
}

.section-title {
    font-family: 'program-narrow', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #ef4b81;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 300;
}

.login-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.login-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.admin-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.btn-add-event {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(239, 75, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-add-event:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(239, 75, 129, 0.4);
}

.btn-icon {
    font-size: 1.3rem;
}

.admin-controls {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-import-csv {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-import-csv:hover {
    background: linear-gradient(135deg, #5568d3 0%, #653a8f 100%);
}

.admin-events-container {
    display: grid;
    gap: 20px;
}

.error-message {
    color: var(--accent-color);
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.show-password-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: opacity 0.3s;
}

.show-password-btn:hover {
    opacity: 0.7;
}

.show-password-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #f481a7;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .middle-nav {
        width: calc(100% - 280px);
    }
    
    .top-nav-middle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .top-navbar {
        height: 70px;
        position: fixed !important;
    }

    .top-navbar:after {
        display: none;
    }

    .navbar-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        height: 70px;
        gap: 0;
    }

    .navbar-logo {
        flex-shrink: 0;
    }

    .millies-logo-image {
        height: 40px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .middle-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: none;
        height: auto;
    }

    .middle-nav.active {
        max-height: 500px;
        padding: 10px 0;
    }

    .top-nav-middle {
        width: 100%;
        height: auto;
        font-size: 18px;
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
    }

    .top-nav-middle:last-child {
        border-bottom: none;
    }

    .top-nav-middle:hover {
        background-color: #f8f8f8;
    }

    .navbar-cta {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    .order-button {
        font-size: 16px;
        padding: 8px 15px;
        min-width: 100px;
        height: 36px;
    }

    .page-wrapper {
        padding-top: 70px;
    }

    header h1 {
        font-size: 2rem;
    }

    header h1.uppercase-title {
        font-size: 1.8rem;
    }

    .hero-container {
        width: 100%;
        overflow: visible;
    }

    .calendar-header-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        margin-top: 0;
        margin-bottom: -10px;
        max-height: 75vh;
    }
    
    body.landing-page .calendar-header-image {
        object-fit: cover;
        object-position: center;
        margin-top: 0;
        margin-bottom: -10px;
        max-height: 75vh;
        width: 100%;
    }
    
    .main-hero-header {
        margin-top: 0;
    }
    
    .hero-container {
        margin-top: 0;
    }

    .hero-nav-bar {
        padding: 20px 0;
        margin-top: 10px;
    }
    
    body.landing-page .hero-nav-bar {
        margin-top: 0px !important;
    }

    .slick-list {
        padding: 0 20px;
    }

    .event-type-name {
        font-size: 1.2rem;
        font-weight: 400;
        letter-spacing: 2px;
        padding: 0 30px;
    }
    
    .event-type-name.slick-current,
    .event-type-name.slick-active,
    .event-type-name.slick-center {
        font-weight: 900;
    }

    .container {
        padding: 15px;
        padding-left: 15px;
    }

    .calendar-content-section {
        padding: 15px;
        margin-top: -30px;
    }
    
    .landing-section {
        margin-top: -30px;
    }
    
    .month-header-wrapper {
        margin-top: -50px;
        margin-bottom: 15px;
    }

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

    .event-card {
        flex-direction: column;
    }

    .event-image {
        width: 100%;
        height: 200px;
    }

    .section-header {
        font-size: 1.8rem;
        white-space: normal;
    }

    .featured-header {
        font-size: 2rem;
    }

    .month-header {
        font-size: 1.8rem;
    }

    .events-tiles {
        justify-content: center;
        padding: 0 10px;
        gap: 12px;
        margin-top: -30px;
    }

    .event-tile {
        width: calc(55% - 6px);
        max-width: calc(55% - 6px);
        min-width: calc(55% - 6px);
        height: auto;
        min-height: 300px;
    }
    
    .event-tile.no-image {
        min-height: 300px;
        height: 300px;
    }
    
    .event-tile.no-image:hover {
        min-height: 300px;
    }
    
    .event-tile-title {
        font-size: 1rem;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-height: 2.6em;
    }
    
    .event-tile-description-preview {
        font-size: 0.85rem;
        line-height: 1.4;
        max-height: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .event-tile-date-time {
        font-size: 1rem;
    }
    
    .event-tile-date {
        font-size: 1rem;
    }
    
    .event-tile-time {
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .calendar-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    #add-event-btn {
        width: 100%;
    }

    .landing-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
        margin-top: -50px;
    }

    .landing-button {
        padding: 35px 15px;
        font-size: 1.2rem;
        min-height: 160px;
    }

    .month-header-wrapper {
        padding: 0 10px;
    }

    .month-nav-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .millies-logo-image {
        height: 35px;
    }

    .order-button {
        font-size: 14px;
        padding: 6px 12px;
        min-width: 90px;
        height: 32px;
    }

    .top-nav-middle {
        font-size: 16px;
        padding: 12px 15px;
    }

    .section-header {
        font-size: 1.5rem;
    }

    .event-tile {
        width: calc(60% - 5px);
        max-width: calc(60% - 5px);
        min-width: calc(60% - 5px);
        min-height: 280px;
    }
    
    .event-tile.no-image {
        min-height: 280px;
        height: 280px;
    }
    
    .event-tile.no-image:hover {
        min-height: 280px;
    }
    
    .event-tile-title {
        font-size: 0.95rem;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-height: 2.6em;
    }
    
    .event-tile-description-preview {
        font-size: 0.8rem;
        line-height: 1.4;
        max-height: 45px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .event-tile-date-time {
        font-size: 0.95rem;
    }
    
    .event-tile-date {
        font-size: 0.95rem;
    }
    
    .event-tile-time {
        font-size: 0.85rem;
    }

    .landing-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .landing-button {
        padding: 25px 10px;
        font-size: 1rem;
        min-height: 140px;
    }
}

/* CSV Import Styles */
.csv-instructions {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.csv-instructions p {
    margin: 0 0 10px 0;
}

.csv-instructions ul {
    margin: 10px 0;
    padding-left: 20px;
}

.csv-instructions li {
    margin: 5px 0;
}

.csv-instructions code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
}

.csv-instructions pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 0.85em;
    margin-top: 10px;
}

.csv-progress {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 15px;
}

#progress-text {
    text-align: center;
    margin: 0;
    font-weight: 600;
    color: var(--text-color);
}

.csv-results {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.csv-results-summary {
    margin-bottom: 15px;
}

.csv-results-summary h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.csv-results-summary p {
    margin: 8px 0;
}

.csv-errors {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #dee2e6;
}

.csv-errors h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.csv-errors ul {
    margin: 0;
    padding-left: 20px;
}

.csv-errors li {
    margin: 5px 0;
    color: #dc3545;
}

