body {
    font-family: Arial, sans-serif;
    background-color: #f4f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.left-panel {
    padding: 20px;
    width: 40%;
    background-color: #f9f9f9;
    text-align: center;
}

.left-panel img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.left-panel h2 {
    font-size: 24px;
    margin-top: 10px;
    color: #1a2b47;
}

.left-panel p {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.right-panel {
    padding: 20px;
    width: 60%;
}

.calendar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
    text-align: center; 
}

.calendar h3 {
    font-size: 18px;
    color: #1a2b47;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.calendar-day {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: #1a2b47;
    font-weight: bold;
}

.calendar-day.selected {
    background-color: #F7931E;
    color: white;
}

.calendar-day.today {
    background-color: #ffffff;
    color: #1a2b47;
    border: 2px solid #8BC24A;
}

.calendar-day:hover {
    background-color: #8BC24A;
}

.time-slots {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-height: 200px;
    /* Fixed height for scroll */
    overflow-y: auto;
    /* Makes it scrollable */
    padding-right: 10px;
}

.time-slot {
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: #1a2b47;
    cursor: pointer;
    text-align: center;
    flex: 1 0 48%;
    margin: 2px;
}

.time-slot.selected {
    background-color: #F7931E;
    color: white;
}

.time-slot:hover {
    background-color: #8BC24A;
}

.timezone {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.next-button {
    background-color: #F7931E;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.left-panel input[type="text"],
.left-panel input[type="email"],
.left-panel input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #1a2b47;
    background-color: #f4f5f7;
    box-sizing: border-box;
}

.left-panel input[type="text"]:focus,
.left-panel input[type="email"]:focus,
.left-panel input[type="tel"]:focus {
    outline: none;
    border-color: #F7931E;
    background-color: #fff;
}

.left-panel input::placeholder {
    color: #999;
    font-size: 13px;
}

.left-panel img {
    border-radius: 50%;
    max-width: 180px;  
    max-height: 180px; 
    width: auto;      
    height: auto;     
}


.inline-content {
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.inline-content img {
    margin-right: 5px; 
    width: 24px;
}