
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background-color: #f9f9f9;
    color: #131E29;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    cursor: pointer;
    text-align: left;
    position: relative;
}

    .dropdown-btn span {
        color: #000000;
    }

    .dropdown-btn::after {
        content: '\f054';
        font-family: fontawesome;
        position: absolute;
        right: 15px;
        top: 14px;
        transform: rotate(90deg);
        transition: transform 0.3s;
        z-index: 2;
    }

    .dropdown-btn.active::after {
        top: 13px;
        transform: rotate(270deg);
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 343px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 0px;
}

    .dropdown-content.show {
        display: block;
    }

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #E2F5E9;
            text-decoration: none;
        }


.lounges-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    color: #131E29;
    display: block;
    margin-bottom: 8px;
}

.lounges-station-list {
    width: 343px;
    height: 48px;
    padding: 12px 16px 12px 16px;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid #7F8FA1;
    margin-bottom: 8px;
}

.lounges-time-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    color: #131E29;
    margin-top: 10px;
}

.lounges-time-detail {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    color: #131E29;
}


.lounge-more-btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.09px;
    color: #D02D00;
    display: block;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
    text-decoration: none;
    margin-top: 10px;
}

    .lounge-more-btn::after {
        content: "\f054";
        font-family: fontawesome;
        position: absolute;
        left: 118px;
        top: 6px;
        font-weight: 300;
        font-size: 11px;
    }
