body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 100vh;
    max-width: 400px;
    margin: 0 auto;
}
main {
    width: 100%;
    /* padding: 0 16px; */
    background-color: #ffffff;
}

.container {
    width: 100%;
    background: white;
    max-width: 400px;
    margin: auto;
    min-height: 100vh;
    height: min-content;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #d28b7b;
}

.btn {
    background-color: #d28b7b;
    color: #f8f8f8;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
}

.btn:hover {
    background-color: #c07a6a;
    border-radius: 40px;
}

.register-link {
    margin-top: 50px;
    font-size: 12px;
    color: #6c757d;
}

.register-link a {
    color: #d28b7b;
    text-decoration: none;
}

/* css bagian homepage */

.container-2 {
    width: 100%;
    background: white;
    max-width: 400px;
    margin: auto;
    min-height: 100vh;
    height: min-content;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .location {
    display: flex;
    align-items: center;
}

.header .location i {
    color: #d65523;
    margin-right: 5px;
}

.header .location select {
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
}

.header .notification i {
    color: #d65523;
    font-size: 20px;
}

.search-bar {
    padding: 0 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.search-bar input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

.search-bar button {
    background-color: #d65523;
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
}

.section {
    padding: 20px;
}

.section::-webkit-scrollbar {
    display: none;
}

.section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section .see-all {
    color: #bf5426;
    font-size: 14px;
    font-weight: 500;
}

.special-for-you {
    display: flex;
    overflow-x: scroll;
}

.special-for-you::-webkit-scrollbar {
    display: none;
}

.special-for-you .card {
    min-width: 250px;
    margin-right: 10px;
    position: relative;
}

.special-for-you .card img {
    width: 100%;
    border-radius: 10px;
}

.special-for-you .card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.special-for-you .card .overlay .limited-time {
    background-color: #d65523;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

.special-for-you .card .overlay .claim {
    background-color: #d65523;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.services .service {
    width: 22%;
    text-align: center;
    margin-bottom: 20px;
}

.services .service i {
    font-size: 24px;
    color: #fff;
    background-color: #d65523;
    padding: 15px;
    border-radius: 50%;
}

.services .service p {
    font-size: 14px;
    font-weight: 500;
}

.service-2 i {
    background-color: #d65523;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
}
.services .service-2 p {
    font-size: 14px;
    font-weight: 500;
}

.top-rated-salons {
    display: flex;
    overflow-x: scroll;
}

.top-rated-salons .salon {
    min-width: 150px;
    margin-right: 10px;
    position: relative;
}

.top-rated-salons .salon img {
    width: 100%;
    border-radius: 10px;
}

.top-rated-salons .salon .rating {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.top-rated-salons .salon .rating i {
    color: #d65523;
    margin-right: 5px;
}

.top-rated-salons::-webkit-scrollbar {
    display: none;
}

.footer {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 400px;
    margin: 0 auto;
}

.footer .menu-item {
    text-align: center;
}

.footer .menu-item i {
    cursor: pointer;
    font-size: 20px;
    color: #8d898d;
}

.footer .menu-item p {
    font-size: 10px;
    font-weight: bold;
    margin-top: 5px;
    color: #8d898d;
}

.rating-2 {
    position: absolute;
    top: 70px;
    left: 5px;
    background-color: #d65523;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* css bagian detailsalon */
.container-3 {
    width: 100%;
    background: white;
    max-width: 400px;
    margin: auto;
    min-height: 100vh;
    height: min-content;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    height: 300px;
}

.rating-3 {
    position: absolute;
    top: 10px;
    left: 15px;
    background-color: #d65523;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.header-2 {
    padding: 10px;
}

.header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.header p {
    margin: 5px 0;
    color: #888;
    font-size: 14px;
}

.location,
.time {
    display: flex;
    align-items: center;
    margin: 20px 2;
    color: #888;
    font-size: 14px;
}

.location i,
.time i {
    color: black;
    margin-right: 7px;
}

.icons {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.icons div {
    text-align: center;
}

.icons i {
    font-size: 20px;
}

.icons p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #888;
}

.tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f0f0f0;
    margin-right: 5px;
    border-radius: 5px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.tab:hover {
    background-color: #e0e0e0;
}

.tabs div {
    font-size: 14px;
    color: #888;
}

.tabs .active {
    background-color: #d65523;
    color: white;
    font-weight: bold;
}

.services-3 {
    padding: 10px;
}

.services-3 h2 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 500;
}

.services-3 b {
    color: #d65523;
    font-size: 15px;
}

.service-item-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.service-item-3:last-child {
    border-bottom: none;
}

.service-item-3 p {
    margin: 0;
    font-size: 14px;
}

.service-item-3 i {
    color: #d65523;
}

.book-button {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 15px;
    background-color: #d65523;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .tab {
        padding: 10px;
        font-size: 14px;
    }
}

/* css untuk booking */
.container-4 {
    width: 100%;
    background: white;
    max-width: 400px;
    margin: auto;
    min-height: 100vh;
    height: min-content;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.header-booking {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-booking h1 {
    text-align: center;
    font-size: 30px;
    margin: 10px;
}

.calendar {
    background-color: #d65523;
    color: white;
    padding: 10px;
    text-align: center;
}

.calendar .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar .nav i {
    font-size: 18px;
}

.calendar .days {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.calendar .days div {
    text-align: center;
    width: 14.28%;
}

.time-slots,
.locations {
    padding: 10px;
}

.time-slots h2,
.locations h2 {
    font-size: 16px;
    margin: 10px 0;
}

.time-slots .slot,
.locations .location {
    display: inline-block;
    background-color: #e0e0e0;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    font-size: 14px;
    color: black;
}

.booking-button {
    text-align: center;
    margin: 40px;
}

.booking-button button,
.booking-button a {
    background-color: #d65523;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-booking {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.footer-booking div {
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}

.footer-booking i {
    margin-bottom: 10px;
    font-size: 20px;
    display: block;
    color: #888;
}

.span-booking {
    color: #888;
    font-size: 10px;
    font-weight: bold;
}

/* css untuk membership */

.container-5 {
    width: 100%;
    background: white;
    max-width: 400px;
    margin: auto;
    min-height: 100vh;
    height: min-content;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.header-membership {
    padding: 20px;
}

.header-membership h4 {
    color: #d65523;
    font-size: 30px;
    margin: 10px;
}

.member {
    margin-top: 40px;
}

.member-option {
    cursor: pointer;
    font-size: 15px;
    background-color: #e0e0e0;
    font-weight: bold;
    margin: 10px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 400;
    margin-top: 20px;
    padding: 10px;
    background-color: white;
    border: 1px solid #c0c0c0;
}

.service-member h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-member label {
    cursor: pointer;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.service-member span {
    flex-grow: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 100;
}

.payment {
    text-align: center;
}

.payment button {
    cursor: pointer;
    margin-top: 60px;
    border-radius: 20px;
    padding: 10px 10px;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border: none;
    background-color: #d65523;
    color: white;
}

/* css untuk payment membership */

.container-6 {
    width: 100%;
    background: white;
    max-width: 400px;
    margin: auto;
    min-height: 100vh;
    height: min-content;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}
.header-payment {
    margin-bottom: 20px;
}
.header-payment i {
    cursor: pointer;
    font-size: 20px;
    margin-right: 10px;
}
.header-payment h2 {
    color: #d65523;
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    font-weight: bold;
}
.section-payment {
    cursor: pointer;
    margin-top: 50px;
    margin-bottom: 50px;
}
.section-payment h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.option-payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}
.option-payment i {
    font-size: 24px;
    margin-right: 10px;
}
.option-payment span {
    flex-grow: 1;
}
.option-payment input {
    margin-left: 10px;
}
.more-payment {
    margin-top: 70px;
}
.button-payment {
    text-align: center;
}
.button-payment button {
    background-color: #f26522;
    color: #fff;
    border: none;
    margin-top: 25px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* css untuk pilih service */

.container-7 {
    width: 100%;
    background: white;
    max-width: 400px;
    margin: auto;
    min-height: 100vh;
    height: min-content;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.header-ops {
    margin-bottom: 20px;
}

.header-ops i {
    font-size: 15px;
    margin-right: 10px;
}

.header-ops h4 {
    text-align: center;
    font-size: 25px;
    color: #d65523;
}

.service-option {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.name-service {
    border: none;
    border-radius: 20px;
    background-color: #e0e0e0;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(50% - 70px); /* Menyesuaikan ukuran elemen agar sejajar di kanan dan kiri */
    margin-bottom: 50px; /* Jarak antar elemen vertikal */
}

.service-option .name-service:nth-child(odd) {
    text-align: center; /* Untuk kolom kiri */
}

.service-option .name-service:nth-child(even) {
    text-align: center; /* Untuk kolom kanan */
}

.button-service {
    text-align: center;
}
.button-service button {
    background-color: #f26522;
    color: #fff;
    border: none;
    margin-top: 25px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* css untuk history receipt */

.container-8 {
    width: 100%;
    background: white;
    max-width: 400px;
    margin: auto;
    min-height: 100vh;
    height: min-content;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}
.header-history i {
    cursor: pointer;
    font-size: 20px;
    margin-right: 10px;
}
.header-history h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #d65523;
}
.header-history img {
    padding: 50px;
}

.history-receipt,
.summary {
    background-color: #f8f9fa;
    box-shadow: 6px 6px 6px rgb(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 20px;
}

.history-receipt div,
.summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.history-receipt span,
.summary span {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.receipt-button {
    text-align: center;
    margin-top: 80px;
}

.receipt-button button {
    cursor: pointer;
    background-color: #d65523;
    border: none;
    border-radius: 15px;
    padding: 15px;
    color: white;
    font-size: 15px;
    font-weight: 700;
}

.packets-wrapper {
    background-color: #d28b7b;
    border-radius: 10px;
}

.location-wrapper {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
    gap: 20px;
    margin-top: 24px;
}
.location-item figure {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
}
.location-item p {
    font-size: 12px;
}

.time-ul {
    list-style-type: none;
    margin: 25px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.time-ul li {
    float: left;
    margin: 0 5px 0 0;
    width: 100px;
    height: 40px;
    position: relative;
}
.time-ul li.disabled {
    opacity: 0.5;
}
.time-ul li:not(.disabled):hover label {
    background-color: #d65523;
    color: white;
}

.time-ul label,
.time-ul input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.time-ul input[type="radio"] {
    opacity: 0.01;
    z-index: 100;
}

.time-ul input[type="radio"]:checked + label,
.Checked + label {
    background-color: #d65523;
    color: white;
}

.time-ul label {
    padding: 5px;
    cursor: pointer;
    z-index: 90;
    background-color: #d9d9d9; /* Warna default label */
    border: 1px solid gray;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.time-ul label:hover {
    background: #ddd;
}

.calendar .days a.center {
    padding: 0 8px;
    border-radius: 10px;
    background-color: white;
}
.calendar .days a.center p {
    color: black;
}

.loyalty-card {
    border-radius: 16px;
    background-color: #d28b7b;
    overflow: hidden;
}
.loyalty-card .top-wrap {
    padding: 24px 16px;
    background: #d28b7b;
}
.loyalty-card .bottom-wrap {
    padding: 16px;
    background-color: #d65523;
}
