/* ============================================================
   CustomerNotice – stijlen
   Pas deze waarden aan naar wens of overschrijf vanuit je thema.
   ============================================================ */

.customer-notice-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    background-color: #f0f6ff;
    border: 1px solid #c8ddf7;
    border-left: 4px solid #1a73e8;
    border-radius: 6px;
    padding: 14px 18px;
    margin: 0 0 20px 0;
    font-size: 0.95rem;
}

.customer-notice-message {
    margin: 0;
    flex: 1 1 200px;
    color: #2c3e50;
    font-weight: 500;
}

.customer-notice-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}

.customer-notice-btn {
    font-size: 0.88rem;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
}

/* Responsive: op kleine schermen onder elkaar */
@media (max-width: 576px) {
    .customer-notice-box {
        flex-direction: column;
        align-items: flex-start;
    }
}
