.bwhe-widget { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; font-family: inherit; line-height: 1.4; }
.bwhe-header { margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #2271b1; }
.bwhe-header h3 { margin: 0; font-size: 18px; color: #333; }

.bwhe-status { display: flex; align-items: center; gap: 10px; padding: 12px 15px; margin-bottom: 15px; border-radius: 6px; font-size: 14px; }
.bwhe-status.bwhe-open { background: #e8f5e9; border: 1px solid #4caf50; }
.bwhe-status.bwhe-closed { background: #ffebee; border: 1px solid #f44336; }
.bwhe-status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.bwhe-open .bwhe-status-dot { background: #4caf50; animation: bwhe-pulse 2s infinite; }
.bwhe-closed .bwhe-status-dot { background: #f44336; }

@keyframes bwhe-pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.bwhe-status-text { font-weight: 500; flex: 1; }
.bwhe-status-hours { color: #666; font-size: 13px; white-space: nowrap; }

.bwhe-special-notice { background: #fff8e1; border: 1px solid #ffc107; border-left: 4px solid #ffc107; border-radius: 4px; padding: 12px 15px; margin: 0 0 15px 0; font-size: 14px; font-weight: 500; color: #856404; }

.bwhe-days { display: flex; flex-direction: column; gap: 2px; }
.bwhe-day { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: 4px; transition: background 0.2s; }
.bwhe-day:hover { background: #f5f5f5; }
.bwhe-day.bwhe-today { background: #2271b1; color: #fff; font-weight: 500; }
.bwhe-day.bwhe-today:hover { background: #1a5f8f; }
.bwhe-day-name { font-size: 14px; }
.bwhe-day-hours { font-size: 14px; text-align: right; }

@media (max-width: 480px) {
    .bwhe-widget { padding: 15px; }
    .bwhe-status { flex-wrap: wrap; }
    .bwhe-status-hours { width: 100%; margin-top: 5px; }
}
