.zergles-opening-hours {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.opening-hours-title {
    margin: 0 0 15px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

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

.opening-hours-day {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    line-height: 1.4;
}

.opening-hours-day:last-child {
    border-bottom: none;
}

.zergles-error {
    padding: 10px;
    background-color: #ffebee;
    border: 1px solid #f44336;
    border-radius: 4px;
    color: #c62828;
    font-size: 14px;
    margin: 10px 0;
}

.zergles-error a {
    color: #c62828;
    text-decoration: underline;
}

.zergles-error a:hover {
    color: #8e0000;
}

.zergles-warning {
    padding: 10px;
    background-color: #fff8e5;
    border: 1px solid #ffb900;
    border-radius: 4px;
    color: #8f6000;
    font-size: 14px;
    margin: 10px 0;
}

.zergles-warning a {
    color: #8f6000;
    text-decoration: underline;
}

.zergles-warning a:hover {
    color: #5d3e00;
}

/* Responsive design */
@media (max-width: 768px) {
    .zergles-opening-hours {
        padding: 10px;
        margin: 15px 0;
    }
    
    .opening-hours-title {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .opening-hours-day {
        font-size: 13px;
    }
}
/* Tempora
rily Closed Styles */
.zergles-temporarily-closed {
    margin: 20px 0;
    padding: 20px;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff4f0 0%, #ffe8e0 100%);
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.temporarily-closed-title {
    margin: 0 0 12px 0;
    font-size: 1.4em;
    font-weight: bold;
    color: #d63031;
    text-shadow: 0 1px 2px rgba(214, 48, 49, 0.1);
}

.zergles-temporarily-closed p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #8b4513;
}

/* Responsive design for temporarily closed */
@media (max-width: 768px) {
    .zergles-temporarily-closed {
        padding: 15px;
        margin: 15px 0;
    }
    
    .temporarily-closed-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .zergles-temporarily-closed p {
        font-size: 14px;
    }
}

/* Animation for temporarily closed notice */
.zergles-temporarily-closed {
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}