.hotel-list-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.hotel-list-modal {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.modal-title {
    flex-grow: 1;
    text-align: center;
    margin: 0;
    font-size: 18px;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
}

.search-container {
    padding: 16px;
}

.search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
}

.hotel-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0 16px;
}

.hotel-item {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.hotel-item.selected {
    background-color: #DAE6F9;
    border-radius: 8px;
}

.hotel-item:last-child {
    border-bottom: none;
}

.hotel-item h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.hotel-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.hotel-not-found-link {
    padding-bottom: 16px;
    text-align: center;
}

.hotel-not-found-link a {
    color: #007bff;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-color: #007bff;
}

.hotel-not-found-link a:hover {
    text-decoration: underline;
}

.no-results-container {
    padding: 20px;
    background-color: #FFD2D2;
    border-radius: 8px;
    margin-top: 20px;
}

.no-results-container p, .recommendation-container p {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}

.recommendation-container {
    padding: 20px;
    margin-top: 20px;
}

.recommendation-container a {
    color: #007bff;
    text-decoration: underline;
    text-decoration-color: #007bff;
}

.recommendation-container a:hover {
    text-decoration: underline;
}

.refund-title {
    font-size: 14px;
    color: #FF0000;
}

.refund-link {
    color: #007bff;
    text-decoration: underline;
    text-decoration-color: #007bff;
}

.hotel-not-found-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.hotel-not-found-modal {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
}

.modal-content {
    padding: 16px;
    overflow-y: auto;
}

.modal-content p {
    margin-bottom: 16px;
}

.modal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.modal-content li {
    margin-bottom: 8px;
}

.hotel-info-text {
    color: #666;
    font-size: 14px;
    margin: 10px 16px;
    padding: 5px 5px;
    background-color: #f0f0f0;
    border-radius: 4px;
    line-height: 1.5;
}