.business-hours-widget {
    padding: 10px;
    /*width: 350px;*/
    margin: auto;
    /*margin: 20px auto;*/
}

.status {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
}

#hours-dropdown-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    padding-right: 7px
}

.hours-dropdown-menu {
    /*display: none;*/
    visibility: hidden;
    margin-top: 10px;
    padding-top: 10px;
    position: absolute; 
    background: white; 
    z-index: 999999; 
    padding: 8px;
    padding-left: 12px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 16px;
    border-radius: 10px;
    overflow: hidden;

    height: 33px;

    transition: height 150ms ease;
    transition-delay: 0s;
}

.menu-open{
    height: 275px;
}

.hours-dropdown-header {
    margin-bottom: 5px;
    color: black;
    font-weight: 650;
}

#today-hours{
    margin-top: 10px;
}

#today-hours .hours-row .weekday{
    font-weight: 600;
}

#today-hours .hours-row div{
    font-weight: 600;
}

.hours-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 5px;
}

.open {
    color: var(--thm-base);
    font-weight: 600;
}

.closed {
    color: rgb(210, 0, 0);
    font-weight: 600;
}

#open-closed{
    font-weight: 600;
    font-size: 17px;
}

.flipped-arrow{
    transform: rotate(180deg);
}

.current-day {
    color: blue;
}

#hours-arrow{
    transition: all 250ms ease;
    transition-delay: 0s;
}