.container-box-cal {
    max-width: 800px;
    margin: 0px auto;
    background: #EE6528;
    padding: 20px;
    border-radius: 15px;
}
.container-box-cal #small-calendar{
    font-size:11px;
}

#smallCalendar-header, #small-calendar, .recommendation-box, .aco-info-box, .enq-info-box{
    background: white;
    padding: 10px;
    border-radius: 10px;
}

#smallCalendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff7f00;
    border: 2px solid white;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.nav-btn i{
    font-size:24px;
}
.legend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    margin-bottom: 10px;
}
.legend div {
    background-color:#ffffff;
    padding:5px;
    line-height:15px;
}
.legend span {
    background-color:#ffffff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    outline: 2px solid #00a073; /* Green radius effect */
    display: inline-block;
}
.recommendation-box, .aco-info-box, .enq-info-box{
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    vertical-align:top;
}
.aco-info-box, .enq-info-box{
    display:none;
}
.recommendation-box .rinfo, .aco-info-box .rinfo{
    margin: auto;
    margin-left:20px;
}
.aco-info-box .rinfo, .enq-info-box .einfo{ padding:0px 15px 0px 15px; }
.aco-info-box .one{
    padding:0px 0px 10px 0px;
}
.recommendation-box .two , .aco-info-box .two{
    font-weight:bold;
    font-size:18px;
}
.recommendation-box i, /*.aco-info-box i*/{
    color:green;
    font-size:24px;
    float: right;
}
.aco-info-box .instruction, .enq-info-box .instruction{
    text-align: center;
}
#small-calendar {
    background: white;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}
 #small-calendar table, #small-calendar .table-bordered th, #small-calendar .table-bordered td{
    border: none;
}
.fc .fc-toolbar.fc-header-toolbar {
    display:none;
}

.available-start {
    border-radius: 50%;
    outline: 2px solid #00a073; /* Green radius effect */
    width:20px;
    height:20px;
    margin: auto;
    cursor: pointer;
    top:4px;
}
.unavailable-date .fc-daygrid-day-number::after,.fc-day-past .fc-daygrid-day-number::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px; /* Thickness of the line */
    background-color: #666;
    top: 50%;
}
.unavailable-date,.fc-day-past{
    background-color: #BEBBB5 !important; /*f25600*/
    opacity:0.8;
    position: relative;
    text-align: center;
}


/*.unavailable-date-pre::before{
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 50% 100%);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity:0.3;
}*/



/*.unavailable-date-pre .fc-daygrid-day-number::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; 
    background-color: #efefef;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
}*/



.unavailable-date-last::before{
    /*clip-path:polygon(0% 100%, 100% 0%, 0% 0%, 0% 0%);*/
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity:0.3;
}

/*.unavailable-date-last::after{
    content: "";
    position: absolute;
    width: 50%;
    height: 2px; 
    background-color: #CCCCCC;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
}*/

/*td.unavailable-date-last::after {
    clip-path: polygon(0% 100%, 100% 0%, 0% 0%, 0% 0%);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #f25600;
    opacity: 0.3;
}*/


.selected-range {
    background-color: rgba(165, 42, 42, 0.3); /* Light brown for range */
}
.small-calendar {

    margin-bottom: 20px;
}
.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events{
    display: none;
}
.fc .fc-daygrid-day-top{
    display: block !important;
    text-align: center !important;
    margin:5px 0px 0px 0px;
}
.fc-daygrid-day-number {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* General selected date style */
.selected-date.first-selected,.selected-date.last-selected{
    background-color:transparent;
}
.selected-date {
   background-color:#ffac00;
}

td.selected-date.first-selected, td.selected-date.last-selected,td.unavailable-date-pre,td.unavailable-date-last,td.fc-day-past{
    position: relative; /* Ensures ::before is positioned within this td */
    overflow: hidden; /* Prevents pseudo-element from overflowing */
}

/* First selected date - Right half highlighted */
td.selected-date.first-selected::after{
    /*clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 50% 100%);*/
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffac00;
    opacity:1;
}

/* Last selected date - Left half highlighted */
td.selected-date.last-selected::after{
    /*clip-path:polygon(0% 100%, 100% 0%, 0% 0%, 0% 0%);*/
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffac00;

}
/*td.unavailable-date-pre.selected-date.last-selected::after{
    width: 200%;
    height: 200%;
}*/
#prev-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
table td:first-child.unavailable-date-pre{
    background-color: #BEBBB5 !important; /*f25600*/
    opacity: 0.8;
    position: relative;
    text-align: center;
}
table td:first-child.unavailable-date-pre:after{
    content: "";
    position: absolute;
    width: 50%;
    height: 1px; /* Thickness of the line */
    background-color: #666;
    top: 46%;
    left:25%;
}
#smallCalendar-header select,#smallCalendar-header select option{
    text-align: center;
}
.btn--res{
    background-color: #00c990;
    font-weight: bold;
}

.icon-container {
    display: flex;
    justify-content: center; /* Center align icons */
    align-items: center;
    gap: 40px; /* Space between icons */
    height: 75px; /* Adjust height */
    color: green;
}

.icon-container i,.icon-container img {
    font-size: 40px; /* Adjust icon size */
}
.green-icon {
  vertical-align:top;
  margin:0px 0px 5px 0px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(77%) saturate(415%) hue-rotate(79deg) brightness(90%) contrast(95%);
}
label.flexible{
    padding-right:10px;
    font-weight:500;
}
#enquire_fields{
    display:none;
}

#blkicn, #blkicn2{
  float: right;
  display: flex;
  flex-direction: column;    /* stack icon & text vertically */
  align-items: center;       /* center horizontally */
  text-align: center;
  font-size: 12px;           /* base size for text */
  color:green;   
  line-height: 1; 
}

/*#blkicn2 {
  
  flex-direction: column;    
  align-items: center;       
  text-align: center;
  font-size: 12px;         
  color:green;   
  line-height: 1; 
}*/

#blkicn i,#blkicn2 i {
  font-size: 24px;           /* icon size */
  margin-bottom: 3px;        /* space between icon and text */
}
