.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-container {
    max-width: 100%;
    padding: 20px;
    border-radius: 10px;
}

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

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-grid div {
    padding: 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.calendar-grid div:hover {
    background: rgba(0, 123, 255, 0.1);
}

.event-day {
    background: var(--primary-color, #007bff);
    color: white;
    cursor: pointer;
}

.event-day:hover {
    background: rgba(0, 123, 255, 0.8);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .calendar-grid div {
        padding: 10px;
        font-size: 0.9rem;
        min-height: 60px;
    }
}

@media (max-width: 576px) {
    .calendar-grid div {
        padding: 8px;
        font-size: 0.8rem;
        min-height: 50px;
    }
}

/* Assuming this is your hover style */
.calendar-grid div:hover {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

/* Apply same hover style to today */
.calendar-grid .today {
    background-color: #007bff;
    color: white;
}

.TheEventColor{
    height: 10px;
    width: 10px;
    border-radius: 100%;
    display: inline-block;
}