.oph-shop-closed-banner {
    position: sticky;
    top: 0;
    width: 100%;
    height: 20vh;
    background-color: #ff4d4f;
    color: #ffffff;
    text-align: center;
    line-height: 20vh;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 9999;
}

.oph-table {
    width: 100%;
    border-collapse: collapse;
}

.oph-table th,
.oph-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.oph-section-title {
    margin-top: 20px;
    font-weight: bold;
}

.oph-closed-dates-wrapper input {
    margin: 5px 0;
}

.oph-submit-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Popup styles */
.oph-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; /* Increased from 50% to 60% (20% bigger) */
    height: 60%; /* Increased from 50% to 60% (20% bigger) */
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
}

/* Background overlay for popup */
.oph-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}
