/* Calendar Main Container */
#calendar-container {
    max-width: 900px;
    margin: 30px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Header: Month and Navigation */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0b2e2e;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}

/* Calendar Grid Structure */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid #e0e0e0;
}

/* Day Names (Sun, Mon, etc.) */
.day-header {
    background: #1a4d4d;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Individual Date Cells */
.calendar-day {
    aspect-ratio: 1 / 1;
    padding: 10px;
    border: 0.5px solid #f0f0f0;
    text-align: right;
    font-size: 0.9rem;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
    color: #333;
}

.calendar-day:hover {
    background: #f9fbfb;
}

/* Today's Date Highlight */
.calendar-day.today {
    background: #e8f4f4;
    font-weight: bold;
    color: #0b2e2e;
}

/* Dates with Events/Training */
.calendar-day.has-event {
    background: #0b2e2e;
    color: white;
}

/* Small Indicator Dot */
.event-dot {
    height: 6px;
    width: 6px;
    background-color: #ffc107;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}
/* Event text ka style */
.event-text {
    display: block;
    background: #ff9800; /* Orange color jo aapke theme par suit kare */
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 3px;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendar-day {
    min-height: 80px; /* Thoda bada kiya taaki text fit ho jaye */
    position: relative;
    vertical-align: top;
}

.event-wrapper {
    margin-top: 5px;
}