.hp_room-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.hp_room-title > .room_name {
    margin: 0 5px 0 0;
}

.hp-modal {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.4rem;
    width: 100%;
    padding: 1.3rem;
    min-height: 250px;
    position: fixed;
    top: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    z-index: 2;
}

@media (min-width: 1000px) {
    .hp-modal {
        width: 50%;
    }
}

.hp-modal .hp-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 0;
}

.hp-modal input {
    padding: 0.7rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9em;
}

.hp-modal p {
    font-size: 16px;
    color: #777;
    margin: 0.4rem 0.2rem;
}

button {
    cursor: pointer;
    border: none;
    font-weight: 600;
}

.hp-btn {
    display: inline-block;
    padding: 0.8rem 1.4rem;
    font-weight: 700;
    background-color: black;
    color: white;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
}

.hp-btn-close {
    transform: translate(10px, 0);
    background: #eee;
    border-radius: 50%;
}

.hp-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.hp-hidden {
    display: none;
}

.hp-modal-center {
    display: flex;
    justify-content: center;
}

.hp-carousel .image {
    border-radius: 5px;
}
