﻿
table {
    width: 100%;
    border-collapse: collapse;
}

.bottom-line {
    border-bottom: 1px solid #D8DDE5;
}

.city-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.room-date-info {
    font-size: 12px;
    color: #9E9E9E;
}

ul {
    padding-left: 20px;
    list-style-type: none;
}

.hotel-list {
    margin: 5px 0;
    padding: 0;
    list-style: none;
}

.remove-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.hotel-list li,
.remove-list li {
    margin: 5px 0;
}

.location-column {
    vertical-align: top;
    text-align: left;
    width: 50%;
    font-size: 16px;
    color: #666;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.hotel-item {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: flex-start;
}

.price-text {
    font-size: 16px;
    color: #000000;
}

.edit-button {
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('/images/icons/16x16/pencil-active.png') no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.remove-button {
    background-color: #dc3545;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url('/images/icons/10x10/Close.png') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    margin-top: 5px;
}

.remove-buttons-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.price-range-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: end;
}

.hotel-name {
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
    color: #0072E3;
    text-decoration: none;
}

.price-column {
    vertical-align: middle;
    text-align: center;
}

.price-column .price-text {
    display: block;
    margin-bottom: 10px;
}

.price-column .edit-button {
    margin-bottom: 10px;
}

.manage-price-alerts {
    font-family: Gotham, sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
    color: #000000;
}

.manage-price-alerts small {
    font-size: 14px;
    font-weight: 325;
    line-height: 20px;
    text-align: left;
    color: #5E5E5E;
    padding: 3px;
    margin-top: 5px;
    display: inline-block;
}

.divider {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .price-text {
        font-size: 1rem;
    }

    .location-column {
        font-size: 0.9rem;
        width: 100%;
        display: block;
    }

    .price-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    th, td {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .price-text {
        font-size: 0.8rem;
    }

    .price-container {
        align-items: flex-end;
    }

    .location-column {
        font-size: 0.8rem;
    }

    .hotel-name {
        font-size: 0.8rem;
    }

    .city-name {
        font-size: 0.8rem;
    }

    .room-date-info {
        font-size: 0.7rem;
    }

    .manage-price-alerts {
        font-size: 0.8rem;
    }

    .manage-price-alerts small {
        font-size: 0.7rem;
    }
}
