@charset "utf-8";
/* CSS Document */

#bookAppointment {
  display: none;
	
  position: absolute;
  left: 0;
  right: 0;
	z-index: 100;
  margin: 0 auto;
  background-color: white;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

.bookContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.header_line {
  text-align: center;
  cursor: pointer;
}

.header_line::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #8B8B8B;
  margin: 10px auto 0;
  border-radius: 2px;
}
h3 {
    color: #512c00;
}

.treatment-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}


.date-flex{
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.month {
    background-color: #512c00;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
}

.date-carousel {
    display: flex;
	 overflow-x:auto;
	padding-bottom: 20px;
}

.date-item {
	color: #512c00;
    flex: 0 0 auto;
    text-align: center;
    margin-right: 0.5em;
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    min-width: 30px;
}

.day {
	
    font-size: 14px;
	margin-bottom: 5px;
}

.date {
	
    font-size: 20px;
    font-weight: bold;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.time-slot {
	color: #512c00;
    background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
}

.date-item.active, .time-slot.active {
  background-color: #512c00;
  color: #fff;
  font-weight: bold;
}

.book-btn {
    width: 100%;
    padding: 15px;
    background-color: #ffd700;
    border: none;
    border-radius: 5px;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}


/* For WebKit browsers */
.date-carousel::-webkit-scrollbar {
    height: 6px;
}

.date-carousel::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}

.date-carousel::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

.bookingConfirmation{
	height: 100vh;
	display: flex;
    justify-content: center;
	align-items: center;
	background-color: white;
}

.confirm-box{
	width: 100%;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#confirmfont{
	font: px;
}

.backHbtn{
	left: 50%;
  transform: translate(-50%, -50%);
}