/* ============================================================
   Cookie Notification - komunikat dla formularzy Fluent Forms
   Wyświetlany gdy użytkownik nie zaakceptował kategorii cookies
   ============================================================ */

.cookie-required-msg {
    display: none;
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #e1e1e1;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.cookie-required-msg.show {
    display: block;
    animation: cookieMsgFadeIn 0.4s ease forwards;
}

@keyframes cookieMsgFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-required-msg .contact-info {
    color: #e94e77 !important;
    font-weight: 600;
    text-decoration: none;
}

.cookie-required-msg .contact-info:hover {
    text-decoration: underline;
}
