/* Rezervasyon takvimi için özel stil tanımlamaları */
 td.checkout-day {
    position: relative;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    z-index: 99;
}

 td.checkout-day:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, #e3e3e3 50%);
    pointer-events: none;
    z-index: -1;
}

 td.checkout-day .day {
    position: relative;
    z-index: 5;
    color: #333;
    font-weight: bold;
}

td.checkin-day {
    position: relative;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    z-index: 99;
}

 td.checkin-day:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e3e3e3 50%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

 td.checkin-day .day {
    position: relative;
    z-index: 5;
    color: #333;
    font-weight: bold;
}

/* Mevcut CSS sınıflarına ek düzenlemeler */
 td.available {
    background-color: #fff;
    color: #333;
}

td.active,
td.active:hover {
    background-color: #e3e3e3;
    color: #fff;
}

 td.unavailable-day {
    position: relative;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    color: #999;
    overflow: hidden;
}

td.unavailable-day:after, .daterangepicker td.disabled:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 200, 200, 0.4);
    pointer-events: none;
    z-index: 0;
}

 td.unavailable-day .day {
    position: relative;
    z-index: 5;
}

/* Takvim açıklamaları için stil */
.calendar-legend {
    margin-top: 10px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}

.calendar-legend .legend-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 5px;
}

.calendar-legend .legend-color {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    display: inline-block;
}

.calendar-legend .available-day {
    background-color: #fff;
    border: 1px solid #ccc;
}

.calendar-legend .unavailable-day {
    position: relative;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    overflow: hidden;
}

.calendar-legend .unavailable-day:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 200, 200, 0.4);
    pointer-events: none;
    z-index: 0;
}

.calendar-legend .checkout-day {
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    position: relative;
    overflow: hidden;
}

.calendar-legend .checkout-day:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, #e3e3e3 50%);
    pointer-events: none;
    z-index: 0;
}

.calendar-legend .checkin-day {
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    position: relative;
    overflow: hidden;
    z-index: 99;
}

.calendar-legend .checkin-day:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e3e3e3 50%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}


body .daterangepicker .drp-calendar .calendar-table tbody tr td.start-date{
    border: none !important;
    background: none !important;
    color: #1a2b48;
}
body .daterangepicker .drp-calendar .calendar-table tbody tr td.start-date:hover{
    background-color: #eee !important;
    border-radius: 0 !important;
}

body .daterangepicker .drp-calendar .calendar-table thead{
    background: none !important;
}