

.event-container{
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.upcoming-event {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 72vw;
    width: 100%;
    margin-right: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 60vh;
}
.left-side{
    width: 100%;
    height: 50vh;
    border-radius: 1rem;
    object-fit: contain;
    margin-left: 1rem;
}

.right-side{
    width: auto;
    height: 60vh;
    border-radius: 1rem;
    object-fit: contain;
    margin-right: 1rem;
    margin-left: auto;
}
.upcoming-container h1{
    padding-bottom: 10px;
}
.event-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 20px;
}

.calendar-container {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 28vw;
    width: 100%;
    height: 60vh;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.calendar-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-button {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 9999px;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #f3f4f6;
}

.nav-button svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #4b5563;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    padding: 0.5rem 0;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0; /* Remove gap for continuous markers */
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.25rem; /* Add padding inside cells instead */
}

.day-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.day-number-wrapper.today {
    border: 1px solid black;
    border-radius: 25%;
}

.day-number {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}
/* 
.event-marker {
    position: absolute;
    bottom: 0.25rem;
    width: 1.5rem;
    height: 2px;
    border-radius: 9999px;
} */
.event-marker {
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    height: 3px;
    margin: 0; /* Remove margin for continuous effect */
}

/* Single day event - rounded on both sides */
.event-marker.event-single {
    border-radius: 9999px;
    left: 0.25rem;
    right: 0.25rem;
}

/* Start of multi-day event - rounded on left only */
.event-marker.event-start {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
    left: 0.25rem;
}

/* End of multi-day event - rounded on right only */
.event-marker.event-end {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
    right: 0.25rem;
}

/* Middle of multi-day event - no rounding, full width */
.event-marker.event-middle {
    border-radius: 0;
}

/* Optional: Add hover effect to show event title */
.event-marker:hover {
    height: 4px;
    cursor: pointer;
    filter: brightness(1.1);
}