body {
    font-family: 'Noto Sans HK', Arial, sans-serif;
    margin: 0;
    padding: 10px;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}
#wrapper {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.back-link {
    display: inline-block;
    color: #608BC1;
    text-decoration: none;
    font-size: 0.9em;
    margin-bottom: 8px;
}
.back-link:hover {
    text-decoration: underline;
}
.header-content {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 1rem;
}
.header-left {
    flex: 0 0 auto;
    margin-right: 12px;
}
.header-left img {
    max-width: 80px;
    max-height: 80px;
}
.header-left .logo-fallback {
    width: 80px;
    height: 80px;
    background-color: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
}
.header-right {
    flex: 1;
}
.header-right h1 {
    font-size: 1.5em;
    margin: 0 0 4px;
    color: #333;
}
.header-right p {
    font-size: 0.8em;
    margin: 0;
}
.studio-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 8px;
    border-radius: 5px;
}
.studio-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 1rem;
    border-radius: 5px;
}
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 8px;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-item {
    flex: 0 0 100%;
    /*display: none;*/
}
.carousel-item.active {
    display: block;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    border-radius: 5px;
}
.carousel-control.prev {
    left: 10px;
}
.carousel-control.next {
    right: 10px;
}
.carousel-control:hover {
    background: rgba(0, 0, 0, 0.7);
}
.details, .pricing, .contact {
    margin-bottom: 30px;
}
.details table, .pricing table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-bottom: 1rem;
}
.details th, .details td, .pricing th, .pricing td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    width: 50%;
}
.details th, .pricing th {
    background-color: #f4f4f4;
}
.pricing p{
    margin-top: 0.8rem;
    font-size: 0.8rem;
}
.contact a, .header a {
    color: #608BC1;
    text-decoration: none;
}
.contact a:hover, .header a:hover {
    text-decoration: underline;
}
.disclaimer {
    border-top: 1px solid #ddd;
}
.disclaimer h3{
    margin-top: 0.8rem;
}
.disclaimer p, .disclaimer h3{
    font-size: 0.8rem;
    color: #aaa;
}
.amenities-container {
    width: 100%;
    text-align: center;
}
.amenity {
    display: inline-block;
    text-align: center;
    width: 80px;
    margin: 8px 12px;
    vertical-align: top;
}
.amenity img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}
.amenity span {
    font-size: 12px;
    display: block;
}
.available img, .available span {
    color: #000000;
    filter: none;
}
.unavailable img {
    filter: grayscale(100%) opacity(0.5);
}
.unavailable span {
    color: #aaaaaa;
    text-decoration: line-through;
}
@media (max-width: 576px) {
    .header-content {
        display: flex;
        align-items: center;
        padding: 6px;
    }
    .header-left {
        margin-right: 8px;
    }
    .header-left img, .header-left .logo-fallback {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    .header-right h1 {
        font-size: 1.3em;
        margin-bottom: 3px;
    }
    .header-right p {
        font-size: 0.75em;
    }
    .studio-image, .studio-image-placeholder {
        max-height: 150px;
        height: 150px;
    }
    .carousel-control {
        font-size: 18px;
        padding: 8px;
    }
    .back-link {
        font-size: 0.8em;
    }
}