.calender-section{ 
	&.container {
        max-width: 760px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        overflow: hidden;
      }
     

      .calendar-container {
		display:flex;
		  padding:10px;
		  background:#fff;
		  border-radius:13px;
      }
	
	.scheduler-logo{
		text-align:center;
		
		img{
			width:64px;
			height:64px;
			border-radius:72px;
		}
	}
	
	
	
	.meeting-duration-label, .timezone-label{
		color:#33475b;
		font-weight:bold;
		font-size:13px;
	}
	.meeting-duration-value{
		background:#cbd6e2;
		        padding-top: 4px;
        text-align: center;
        border-radius: 3px;
		margin-bottom:25px;
		margin-top:9px;
		font-size:11px;
	}
	.selected-date{
		font-size:12px;
		margin-top:-2px;
	}

      .calendar-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 16px;
        border-radius: 15px;
      }

      .nav-btn {
        color: white;
        border: none;
        padding: 12px 15px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
		  background:none;
		  svg{
			  width:12px;
			  height:18px;
			  fill: rgb(153, 172, 194);
		  }
      }

      .nav-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
      }

      .current-month {
        box-sizing: border-box;
    font-size: 18px;
    font-style: unset;
    font-weight: 500;
    text-transform: unset;
    margin: 0px;
    padding: 0px;
    background-color: unset;
    color: rgb(255, 255, 255);
    letter-spacing: 0px;
    line-height: 27px;
    margin-block-end: 0px;
    text-align: center;
      }

      .calendar {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 2px;
        border-radius: 15px;
        overflow: hidden;
      }

      .day-header {
        color: white;
        text-align: center;
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 1px;
		  background:none;
		  text-transform:uppercase;
      }

      .day {
        color: white;
/*         padding: 15px 10px; */
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
		  opacity:0.3;
		  text-align:center;
		  .day-number{
			  height:40px;
			  width:40px;
			  line-height:40px;
			  border-radius:50px;
			  text-align:center;
		  }
      }

     

      .day.other-month {
        background: #f8fafc;
        color: #94a3b8;
      }

      .day.has-availability {
        color: white;
		  opacity:1;
      }

      .day.selected .day-number{
		background:#fff;
        z-index: 1;
		  color: rgb(0, 89, 129);
      }

      

      .day-number {
        font-weight: 600;
        font-size: 12px;
        margin-bottom: 5px;
      }

      .availability-count {
        font-size: 0.8rem;
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.2);
        padding: 2px 6px;
        border-radius: 10px;
        align-self: flex-start;
      }
	.slots-grid{
		max-height: 320px;
		   overflow-y: auto;
		padding-right:20px;
	}
      .time-slots {
        margin-top: 13px;
        display: none;
      }

      .time-slots.show {
        display: block;
        animation: slideDown 0.3s ease;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .time-slot {
        padding: 10px 20px 6px;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
		  margin-bottom:7px;
		  border:1px solid rgb(223, 227, 235);
		  text-align:center;
		  font-size:12px;
		  color:#005981;
		  background:#fff;
      }

      .time-slot:hover {
        border-color: #005981;
		  background:#0059810d;
      }

      .time-slot.selected {
        background: #005981;
        color: white;
        border-color: #005981;
      }

      .slot-time {

        font-size: 12px;
        display: block;
      }

      .slot-duration {
        font-size: 0.85rem;
        opacity: 0.7;
      }

      .loading {
        text-align: center;
        padding: 40px;
        color: #64748b;
        font-style: italic;
      }

      @media (max-width: 768px) {
        .calendar {
          font-size: 0.9rem;
        }
       

        .slots-grid {
          grid-template-columns: 1fr;			
        }
        
      }
	.calender-left-column{
		width:50%;
		background:#005981;
		padding-top:40px;
		h2{
			box-sizing: border-box;
    font-size: 20px;
    font-style: unset;
    font-weight: 300;
    text-transform: unset;
    margin: 0px;
    padding: 0px;
    background-color: unset;
    color: rgb(255, 255, 255);
    letter-spacing: 0px;
    line-height: 29px;
    text-align: center;
    margin-block: 16px 0px;
    margin-inline: 4px;
			margin-bottom:-5px;
		}
	}
	.calender-right-column{
		width:50%;
		padding:27px 29px;
		#submitBooking{
			display:none; padding:12px 32px; background:#005981; color:white; border:none; border-radius:8px; font-size:1.1rem; cursor:pointer; box-shadow:0 2px 10px rgba(16,185,129,0.2); transition:all 0.2s;
		}
		#bookingStatus{
			color:#005981;
		}
	}
	#timezoneSelect{
		width:100%;
		background: none !important;
    border: 0 !important;
    padding: 0 !important;
		color:#0091ae;
		font-size:14px;
		font-weight:bold;
		margin-top: 7px;
        display: block;
	}
	.back-to-calendar{
		margin-bottom:10px;
		color:#33475b;
		font-weight:bold;
		font-size:13px;
		display:none;
	}
	@media all and (max-width:767px){
	.calender-right-column{
		display:none;
		width:100%;
		}
		.calender-left-column{
			width:100%;
		}
		.calendar-container.show-right{
			.calender-left-column{
				display:none;
			}
			.calender-right-column{
				display:block;
			}
		}
		.back-to-calendar{
			display:block;
		}
	}
	
}