.appointment-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f8d7d9;
    border-radius: 8px;
}
.appointment-header {
    background-color: #ff8552;
    padding: 15px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}
.appointment-step {
    margin-top: 20px;
}
.step-title {
    font-weight: bold;
    margin-bottom: 10px;
}
.appointment-types select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.price-duration {
    margin-top: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 20px;
}
.appointment-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.slot {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    width: calc(33.333% - 10px);
    text-align: center;
}
.slot:hover {
    background-color: #ff8552;
    color: #fff;
}
.more-slots {
    text-align: center;
    margin-top: 20px;
}
.more-slots a {
    color: #007bff;
    text-decoration: none;
}
.more-slots a:hover {
    text-decoration: underline;
}