.elementor-opening-hours-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: space-around;
}

.elementor-pflangl-opening-hours{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem
}

.elementor-pflangl-opening-hours select{
    padding: 0.2rem 1rem;
    text-align: center;
}

/* Hide default checkbox and radio appearance */
.elementor-pflangl-opening-hours input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* General styling for radio and checkbox labels */
.elementor-pflangl-opening-hours label.custom-check {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: .5rem .25rem;
    border-radius: 5rem;
    background-color: white;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 0.5rem;
}

/* Checked (active) style */
.elementor-pflangl-opening-hours label.custom-check:has(input:checked) {
    background-color: var(--e-global-color-secondary);
    color: white;
    border-color: var(--e-global-color-secondary);
}