.or-container {
    align-items: center;
    color: #ccc;
    display: flex;
    margin: 25px 0;
}
.line-separator {
    background-color: #ccc;
    flex-grow: 5;
    height: 1px;
}
@media (max-width: 640px) {
    .content-wrapper {
        padding: 0.5rem 0.5rem;
    }
}
.card-title {
    padding-top: 100px;
    margin-top: -100px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a73e8;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-image: linear-gradient(to right, #4797ff, #025acb);
}

input:focus + .slider {
    box-shadow: 0 0 1px #1a73e8;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.btn_book {
    background-color: #1a73e8;
    color: white;
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: none;
}

.btn_book:hover {
    background-color: #1a73e8;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    border: none;
}
.cssbuttons-io-button {
    display: flex;
    align-items: center;
    font-family: inherit;
    font-weight: 500;
    font-size: 17px;
    padding: 0.8em 1.5em 0.8em 1.2em;
    color: white;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#1a73e8),
        to(#1a73e8)
    ) !important;
    background: linear-gradient(to right, #1a73e8, #1a73e8) !important;
    border: 2px solid #1a73e8;
    border-radius: 20em;
}

.cssbuttons-io-button svg {
    margin-right: 8px;
}

.cssbuttons-io-button:hover {
    border-color: white;
    box-shadow: 0 0.5em 1.5em -0.5em #1a73e8;
}

.cssbuttons-io-button:active {
    box-shadow: 0 0.3em 1em -0.5em #1a73e8;
}

.custom-card {
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 1rem;
}

.custom-card img {
    object-fit: cover;
    max-height: 200px; /* Set your desired maximum height */
    max-width: 100%;
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}

.col-sm-5 {
    display: flex;
    align-items: center;
    flex: 0 0 40%;
    max-width: 40%;
}

.custom-card-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
}

.price {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0.5rem;
    font-size: 1.8rem;
    color: #1a73e8;
}

@media (min-width: 576px) {
    .custom-card-content {
        left: auto;
    }
}

@media (min-width: 768px) {
    .custom-card {
        display: flex;
        flex-direction: column;
    }

    .col-sm-5 {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .col-sm-7 {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .custom-card img {
        border-bottom-left-radius: 0;
        max-height: 100%;
    }
}
#apiResponseContainer {
    background-color: #333;
    border-radius: 5px;
    padding: 15px;
}

#apiResponseContainer2 {
    background-color: #333;
    border-radius: 5px;
    padding: 15px;
}
.responsePre {
    background-color: #222;
    color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
}

.responseCode {
    color: #f5f5f5;
}

.responseCode .string {
    color: #6a8759;
}
.responseCode .number {
    color: #6897bb;
}
.responseCode .boolean {
    color: #cc7832;
}
.responseCode .null {
    color: #d25252;
}
.responseCode .key {
    color: #ffc66d;
}
