/* toppage */
#toppage {
    background: url(/image/background_4.jpg) top/cover no-repeat;
}

    #toppage #booking-form .form-control {
        padding: 10px;
    }

    #toppage .btn {
        background-color: var(--none) !important;
        color: #FFFFFF !important;
        border: 2px solid black !important;
        padding: 10px;
    }

        #toppage .btn:hover {
            background-color: red !important;
            color: #FFFFFF !important;
            border: 2px solid black !important;
        }


/* sorting */
#sorting {
    margin-bottom: 20px;
}

/* search result */
#result-container {
    display: flex;
    flex-wrap: wrap;
}

#result-container .col-md-3 {
    display: flex;
    flex: 1 0 24%;
    max-width: 24%;
    margin-bottom: 20px;
}

#result-container .card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#result-container .card img {
    max-width: 100%;
    height: auto;
}

#result-container .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#result-container .card-body ul {
    list-style-type: disc;
    padding-left: 20px;
    flex-grow: 1;
}

#result-container .card-body ul li {
    margin-bottom: 5px;
}

#result-container .card-title {
    font-size: 20px;
    font-weight: 500;
}

#result-container .card-price {
    font-size: 20px;
}

#result-container .list-unstyled li {
    font-size: 14px;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-body .btn {
    align-self: flex-end;
    margin-top: auto;
    background-color: var(--none) !important;
    color: #FFFFFF !important; 
    padding: 10px;
}

.card-body .btn:hover {
    background-color: red !important;
    color: #FFFFFF !important;
    border: 2px solid black !important;
}
  

@media(max-width: 990px) {
    #result-container .col-md-3 {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
 



.my-cool-element {
    background-color: rgba(255, 255, 255, 0.3); /* White with 50% transparency */
    border-radius: 15px; /* Rounded corners with a radius of 25 pixels */
    /* Add other styles as needed */
    padding: 0.6em;
    margin: 1px;
}