#ravi-dev-calendar {
    max-width: 1000px;
    margin: 20px auto;
    font-family: sans-serif;
}

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

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    position: relative; /* Make grid relative for absolute bars */
    gap: 0.5px;
    background: #ccc;
    height: auto; /* can add min-height for lanes */
	border: 1px solid #ddd;
}

.calendar-cell {
    background: #fff;
    min-height: 120px;
    position: relative;
    padding: 2px;
     border: 1px solid #ddd; 
    /* overflow: hidden; */
    /* width: 120%; */
}

.calendar-cell .day-number {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
}

.ravi-lane {
    position: absolute;
    left: 0;
    right: 0;
    height: 18px;
}

.booking-bar {
    position: absolute;
    height: 18px; 
    cursor: pointer;
    /* font-size: 10px; */
    /* text-align: center; */
    /* color: #fff; */
    /* overflow: hidden; */
    white-space: nowrap;
    text-overflow: ellipsis;
    /* padding: 0 2px; */
    /* box-sizing: border-box; */
    font-size: 11px;
    display: flex;
    /* align-items: center; */
    align-items: center;
    justify-content: center;
}
.ravi-event-popup {
    position: absolute;
    background: #fff;
    border: 1px solid #888;
    padding: 10px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
span#current-month {
    font-family: 'Font Awesome 5 Brands';
    font-size: 30px;
    font-weight: 800;
}
button#next-month {
    border-radius: 10px;
    color: black;
    background-color: blanchedalmond;
}
button#prev-month {
	border-radius: 10px;
    color: black;
    background-color: blanchedalmond;
}
.booking-label-overlay {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    z-index: 2000;
    opacity: 0.95;
}
.booking-bar.booking-bar-start {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.booking-bar.booking-bar-end {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
