.sn-form-wrapper {
    max-width: 400px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.sn-form-title {
    margin: 0 0 15px;
    font-size: 18px;
    color: #333;
}

.sn-subscribe-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sn-email-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.sn-email-input:focus {
    outline: none;
    border-color: #0073aa;
}

.sn-submit-btn {
    padding: 12px 25px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.sn-submit-btn:hover {
    background: #005a87;
}

.sn-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.sn-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.sn-message.success {
    background: #d4edda;
    color: #155724;
}

.sn-message.error {
    background: #f8d7da;
    color: #721c24;
}
