.plus{
    border-radius: 0;
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}
.minus{
    border-radius: 0;
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}
.day-name {
    background-color: #a4c1b6;
    color: white !important;
    font-weight: 600;
    padding: 12px;
    border-radius: 12px;
}
.calendar-container {
    display: inline-block;
    transition: transform 0.3s ease;
}
.calendar-container:hover {
    transform: scale(1.05);
}
.calendar-container svg {
    filter: drop-shadow(0px 2px 4px rgba(46, 125, 50, 0.3));
}
.booking__meta {
    color: #333;
}
.booking__meta h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b3934a; /* لون أخضر للتنسيق مع السابق */
}
.list--horizontal li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.list--horizontal li i {
    font-size: 1.2rem;
    color: #4CAF50; /* لون أيقونات أخضر */
}
.list--horizontal li div {
    display: flex;
    flex-direction: column;
}
.list--horizontal li span.d-block {
    font-size: 0.9rem;
    color: #666;
}
.list--horizontal li b {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}
body {
    background-color: #f8f9fa;
}

#map {
    height: 400px;
    border-radius: 12px;
    margin-bottom: 15px;
}
.calendar-container {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    /* padding: 30px; */
    margin-top: 50px;
}
.calendar-header {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #b3934a;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}
.day,
.day-name {
    padding: 12px;
    border-radius: 12px;
}
.day-name.selected {
    background-color: #b3934a !important;
}    
.day {
    background-color: #cedbe8;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}
.day:hover {
    background-color: #b3934a;
    color: #fff;
}
.day.disabled {
    background-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.3;
}
.day.selected {
    background-color: #b3934a;
    color: #fff;
}
.time-slot {
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    direction: rtl;
    width: 160px;
}
.time-slot:hover {
    background-color: #b3934a;
    color: #fff;
}
.time-slot.selected {
    background-color: #b3934a;
    color: #fff;
}

#timeSlots {
    max-height: 315px;
    overflow-y: auto;
}
.alert-required {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        top: 0;
    }

    to {
        opacity: 1;
        top: 20px;
    }
}
.city-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.city-card:hover {
    border-color: #b3934a;
    background-color: #cae8db;
}
.city-card.selected {
    border-color: #b3934a;
    background-color: #cae8db;
}
.city-price {
    font-weight: bold;
    color: #b3934a;
    margin-top: 5px;
}
.booking-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.booking-summary-item:last-child {
    border-bottom: none;
}
.booking-summary-label {
    color: #6c757d;
}
.booking-summary-value {
    font-weight: bold;
}
.booking__info {
    align-items: center;
    border-bottom: 3px solid #f8f8f8;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.row-name{
    font-weight: 600;
    margin-left: 5px;
}

/* The container */
.container_checkmark {
    display: block;
    position: relative;
    padding-right: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Create a custom radio button */
.container_checkmark input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
.container_checkmark:hover input ~ .checkmark {
    background-color: #ccc;
}
.container_checkmark input:checked ~ .checkmark {
    background-color: #b3934a;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container_checkmark input:checked ~ .checkmark:after {
    display: block;
}
.container_checkmark .checkmark:after {
    top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
input.invalid{
    border: 1px solid red;
}
@media (max-width: 768px) {
    .calendar-days {
        /* grid-template-columns: repeat(7, minmax(40px, 1fr)); */
        gap: 5px;
    }
    /* .day, .day-name {
        font-size: 12px;
        padding: 6px 4px;
    } */
}

@media (max-width: 600px) {
    .booking__meta h4 {
        text-align: center;
        padding-top: 20px;
    }  

    .day, .day-name {
        border-radius: 8px;
    }

    #calendar-days-container{
        padding: 0 !important;
        width: 600px;
        overflow-x: auto;
    }
}

@media (max-width: 374px) {
    /* .calendar-days {
        grid-template-columns: repeat(7, minmax(27px, 1fr));
        gap: 2px;
    }
    .day, .day-name {
        font-weight: 100;
        border-radius: 4px;
    } */
    *{
        font-size: 14px !important;
    }
}
/*@media (max-width: 300px) {
    .calendar-days {
        grid-template-columns: repeat(7, minmax(20px, 1fr));
        gap: 1px;
    }
    .day, .day-name {
        border-radius: 2px;
    }
} */

#calendar-days-container::-webkit-scrollbar {
    height: 8px;
}

#calendar-days-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#calendar-days-container::-webkit-scrollbar-thumb {
    background: #b3934a;
    border-radius: 4px;
}

#calendar-days-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.select2-dropdown.select2-dropdown--below {
    position: absolute !important;
    text-align:center;
}
.select2-dropdown.select2-dropdown--above {
    position: absolute !important;
    text-align:center;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #b3934a;
    color: white;
}

.select2-dropdown.select2-dropdown--above {
    position: absolute !important;
    text-align:center;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #b3934a;
    color: white;
}
.select2.select2-container{
    border: 1px solid;
    border-radius: 5px;
    padding-top: 8px;
}
#notifyAvailabilityModal .modal-content {
    border-radius: 15px;
}

#confirmNotify {
    background-color: #b3934a;
    border: none;
    padding: 10px;
    font-weight: bold;
}

.booked-slot-label {
    transition: all 0.3s ease;
}

.booked-slot-label:hover {
    background-color: #f8f9fa;
}

.booked-slot-label.bg-primary {
    background-color: #b3934a !important;
    border-color: #b3934a !important;
}

#bookedSlotsContainer {
    max-height: 60vh;
    overflow-y: auto;
}

#notifyAvailabilityModal .btn-outline-secondary {
    padding: 8px 20px;
    border-color: #ddd;
}

.booked-slot-label {
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.booked-slot-label:hover {
    background-color: #f8f9fa;
}

.booked-slot-label.bg-primary {
    background-color: #b3934a !important;
    border-color: #b3934a !important;
}

#bookedSlotsContainer {
    max-height: 60vh;
    overflow-y: auto;
    padding: 15px;
}
#phone::placeholder {
text-align: right;
}
.rtl-swal {
    direction: rtl;
    text-align: right;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.rtl-swal-html {
    text-align: right;
}