/* business-hours.css*/
.business-hours-block {
    
    padding: 25px;
    margin: 60px 150px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border-width: 3px;
    border-color: #7091E6;
    border-style: solid;
}

.business-hours-title {
    text-align: center;
    font-size: 2em;
    color: #7091E6;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ADBBDA;
}

.business-hours-title i {
    margin-right: 8px;
    font-size: 30px;
    animation: flip 3s ease-in-out infinite;
}

.business-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    margin: 0 30px 15px;
    background-color: #7091E6;
    color: #ffffff;
    border-left: 4px solid #7091E6;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.business-hour-item:hover {
    background-color: #ffffff;
    color: #7091E6;
    transform: scale(1.03);
    box-shadow: 0 0 8px rgba(61, 82, 160, 0.6); /*glow effect blue*/ 
}

.day, .hours {
    font-size: 1.1em;
    font-weight: bold;
}

.hours.closed {
    color: #ffffff;
    font-weight: normal;
}

@keyframes flip {
    0%, 100% { transform: rotateY(0); }
    50% { transform: rotateY(180deg); }
}

@media (max-width: 768px) {
    .business-hours-block {
        margin: 40px 20px;
    }
    
    .business-hour-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 10px;
    }
}
