.gmb-hours-widget {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, sans-serif;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.gmb-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.gmb-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.gmb-open {
    color: #16a34a;
}

.gmb-open .gmb-status-dot {
    background-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.gmb-closed {
    color: #dc2626;
}

.gmb-closed .gmb-status-dot {
    background-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.gmb-schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gmb-day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.gmb-day-name {
    font-weight: 500;
    color: #374151;
}

.gmb-day-hours {
    color: #6b7280;
    font-variant-numeric: tabular-nums;
}

.gmb-today {
    background: #f8fafc;
    margin: 0 -12px;
    padding: 8px 12px;
    border-radius: 8px;
}

.gmb-today .gmb-day-name {
    color: #2563eb;
    font-weight: 600;
}

.gmb-today .gmb-day-hours {
    color: #2563eb;
    font-weight: 500;
}

.gmb-error {
    color: #dc2626;
    font-style: italic;
}
