/* =========================================
   SSBHM – Core Elements
========================================= */

.ssbhm-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
}

.ssbhm-badge.open { background: #00c853; color: #fff; }
.ssbhm-badge.closed { background: #d32f2f; color: #fff; }

/* =========================================
   SSBHM – Weekly Hours Widget
========================================= */

.ssbhm-weekly {
    width: 100%;
    max-width: 400px;
    min-width: 380px
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border: 1px solid #000000;
}

.ssbhm-head {
    background: #000000;
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    border-bottom: none;
    text-transform: none;
}

.ssbhm-body {
    background-color: #ffffff;
    padding: 0;
}

.ssbhm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 20px;
    font-size: 16.5px;
    font-weight: 700;
    color: #000000;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.2s ease;
}

.ssbhm-row:last-child { border-bottom: none; }
.ssbhm-row:hover { background-color: #f0f0f0; }

.ssbhm-row.is-today {
    background-color: #e0e0e0;
    color: #000000;
    font-weight: 800;
}

.ssbhm-day { flex-shrink: 0; width: 100px; }
.ssbhm-hours { flex-grow: 1; text-align: right; white-space: nowrap; }
.ssbhm-sep { color: inherit; font-weight: normal; margin: 0 4px; }

.ssbhm-pill.closed {
    display: inline-block;
    background-color: #ff4d4f;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.ssbhm-row.is-today .ssbhm-pill.closed {
    background-color: #ff4d4f;
    color: #ffffff;
}

/* =========================================
   Neon Sign
========================================= */

.ssbhm-neon {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    background: #000;
    font-family: "Courier New", monospace;
    text-align: center;
    line-height: 1.2;
}
.ssbhm-neon span { font-size: 32px; font-weight: 900; text-transform: uppercase; display: block; }
.ssbhm-neon.is-open { border: 3px solid #00ff6a; box-shadow: 0 0 10px rgba(0, 255, 106, 0.5), inset 0 0 10px rgba(0, 255, 106, 0.2); }
.ssbhm-neon.is-open span { color: #fff; text-shadow: 0 0 4px #fff, 0 0 10px #00ff6a, 0 0 20px #00ff6a; animation: ssbhm-neon-flicker 3s infinite alternate; }
.ssbhm-neon.is-closed { border: 3px solid #ff2b2b; box-shadow: 0 0 8px rgba(255, 43, 43, 0.5), inset 0 0 8px rgba(255, 43, 43, 0.2); }
.ssbhm-neon.is-closed span { color: #ff2b2b; text-shadow: 0 0 4px #ff0000, 0 0 10px #ff0000; opacity: 0.8; }
@keyframes ssbhm-neon-flicker { 0%, 19%, 22%, 25%, 54%, 57%, 100% { opacity: 1; } 20%, 24%, 55% { opacity: 0.92; } }

/* =========================================
   Buttons
========================================= */

.ssbhm-block-btn {
    display: inline-block !important; 
    width: 100% !important;           
    box-sizing: border-box;
    padding: 14px 26px !important;    
    text-align: center;
    border-radius: 8px !important;    
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px !important;       
    font-weight: 700 !important;
    text-transform: uppercase;
    text-decoration: none !important;
    line-height: 1;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.ssbhm-block-btn:hover { opacity: 1; transform: translateY(-1px); }

.ssbhm-btn-green {
    background-color: #22c55e !important;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.ssbhm-btn-red {
    background-color: #ff4d4f !important;
    color: #ffffff !important;
    border: none;
    box-shadow: none;
}