.embed-banner {
    max-width: 800px;
    margin: 20px auto;
    padding: 12px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-family: Arial, sans-serif;
    transition: box-shadow 0.2s ease;
}
.embed-banner:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.booking-deals-banner-wrapper {
    color: green;
    font-size: 1.2em;
    text-align: center;
}
.booking-deals-banner-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.booking-deals-banner-info {
    margin-top: 8px;
    font-size: 1em;
    text-align: center;
    color: #777777;
}
.booking-deals-banner-info a {
    margin-left: 10px;
    color: #aaaaaa;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.2em;
}
.booking-deals-banner-info a:hover {
    color: #777777;
    text-decoration: underline;
}
.booking-deals-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-scrolling: auto;
}
.booking-deals-modal-content {
    background: #fff;
    max-width: 80%;
    font-size: 1.1em;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    color: #777777;
    max-height: 90vh;
    overflow-y: auto;
}
.close {
    position: sticky;
    top: 0;
    background: white;
    display: block;
    text-align: right;
    font-size: 24px;
    cursor: pointer;
}