
strong {
    font-weight: bold;
}

.border-list-menu {
    flex-grow: 1; 
    border-bottom-width: 1px; 
    border-style: dashed; 
    margin-bottom: .375rem; 
    margin-right: .5rem; 
    margin-left: .5rem; 
    border-top: none; 
    border-left: none; 
    border-right: none;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 7% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 7px;
}

.modal-content-booking {
    background-color: #fefefe;
    margin: 7% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 40%; /* Could be more or less, depending on screen size */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 7px;
}

.modal-title-event {
    font-size: 24px; 
    margin-bottom:10px;
}

.modal-event-date-time {
    padding: 0; 
    color:#9d9d9d; 
    font-size:14px
}

.box-title-date {
    background-color: #578691;
    padding: 20px;
    border-radius: 7px;
    color: white;
    text-align: left;
}

.lable-address {
    font-size: 20px;
}

/* Add Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    top: -15px;
    right: -5px;
    z-index: 10;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.btn-action {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-action:hover {
    text-decoration: none;
}

/* Primary Button Styles */
.btn-primary {
    color: #fff;
    background-color: #578691;
    border-color: #578691;
}

.btn-primary:hover {
    color: #fff;
    background-color: #3d646d;
    border-color: #3d646d;
}

.btn-secondary {
    color: #fff;
    background-color: #CABA9C;
    border-color: #CABA9C;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #af9d79;
    border-color: #af9d79;
}

@media only screen and  (max-width: 420px) {
    .modal-content {
        margin: 20% auto;
        width: 80%;
    }

    .modal-content-booking {
        margin: 20% auto; 
        width: 80%;
    }

    .modal-title-event {
        font-size: 16px; 
    }

    .modal-event-date-time {
        font-size:12px
    }

    .modal-title-event {
        margin-top:10px;
    }

}