@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Montserrat&display=swap');

.coh-container {
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.coh-day {
    margin-bottom: 10px;
}

.coh-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    background: transparent;
}

.coh-day-name {
    font-family: 'Cinzel Decorative', cursive;
}

.coh-day-times {
    display: none;
    padding: 5px 15px;
    font-family: 'Montserrat', sans-serif;
}

.coh-open, .coh-close, .coh-closed {
    font-family: 'Montserrat', sans-serif;
}

.coh-toggle-icon {
    width: 16px;
    transition: transform 0.3s ease;
}

.coh-day.active .coh-day-times {
    display: block;
}

.coh-day.active .coh-toggle-icon {
    transform: rotate(180deg);
}
