
.kadence-stock-notifier-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.stock-notification-form h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.2em;
}

.stock-notification-form p {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 0.9em;
}

.kadence-notification-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.kadence-notification-form .form-field {
    flex: 1;
}

.kadence-notification-form input[type="text"],
.kadence-notification-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.kadence-notification-form input[type="text"]:focus,
.kadence-notification-form input[type="email"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.kadence-notify-btn {
    background: #007cba !important;
    color: white !important;
    padding: 12px 30px !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: background 0.3s ease !important;
}

.kadence-notify-btn:hover {
    background: #005a87 !important;
}

.kadence-notify-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}

.notification-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.notification-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.notification-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media (max-width: 768px) {
    .kadence-notification-form .form-row {
        flex-direction: column;
        gap: 10px;
    }
}
