﻿/** START GOLF COURSE details PAGE */

.golfcourse-stats-lists-container {
    font-size: 19px;
    letter-spacing: 0px;
    color: #555555;
    font-weight: 500;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    display: flex;
    gap: 15%; /* Adds spacing between the lists */
}

    .golfcourse-stats-lists-container ul {
        min-width: 250px;
    }

    .golfcourse-stats-lists-container b {
        font-weight: 600;
    }

.list-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding: 10px;
}
/** END GOLF COURSE details PAGE */


.lodging-amenities-lists-container {
    font-size: 19px;
    letter-spacing: 0px;
    color: #555555;
    font-weight: 500;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    display: flex;
    gap: 15%; /* Adds spacing between the lists */
}

    .lodging-amenities-lists-container b {
        font-weight: 600;
    }




.valid-between-dates {
    color: var(--moonstone);
    font-weight: 500;
}

.star-fill-gray {
    fill: #555555;
}

.star-empty {
    fill: transparent;
}

.star-rating-list {
    display: flex;
    align-items: center;
    gap: 0px; /* 'grid-gap' is outdated; use 'gap' instead */
    padding-left: 0 !important;
    list-style-type: none;
    margin: 0; /* Remove unwanted spacing */
}

.star-rating-container {
    display: flex;
    align-items: center;
    gap: 5px; /* Controls space between stars and text */
}

    .star-rating-container svg {
        display: inline-block;
        vertical-align: middle;
        max-width: none; /* Ensures it does not scale down */
    }

.review-count-text {
    white-space: nowrap;
    font-size: 14px;
    color: #555; /* Adjust as needed */
}

.btn-info-new {
    background-color: #2ea2b3
}

.hot-deal {
    margin-right: 20px;
}

@media only screen and (max-width: 600px) {
    .golfcourse-stats-lists-container,
    .lodging-amenities-lists-container {
        flex-direction: column;
        gap: 30px;
    }
}
