#subscription-message {
    margin-top: 10px;
    padding: 5px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    min-height: 28px;
}

#subscription-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#subscription-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.newsletter-form {
    position: relative;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-form button {
    width: 100%;
    padding: 10px;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #0b5ed7;
}

/* Fix for SVG icons in the newsletter form (Edge compatibility) */
.newsletter-form .interaction-icon,
.footer-section .interaction-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    fill: currentColor; /* Fallback for browsers that support it */
    color: #333333; /* Explicit color for Edge compatibility */
    stroke: #333333; /* Explicit stroke for Edge */
    vertical-align: middle;
    margin-right: 5px;
}
