/* Notification Form Styles */
.notification-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.notification-email {
    padding: 8px 12px;
    border: 1px solid #d6ecf0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: #101010;
}

.notification-email:focus {
    outline: none;
    border-color: #00f0ff;
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}

.notification-email:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.notification-btn {
    background: #00f0ff;
    color: #101010;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.notification-btn:hover:not(:disabled) {
    background: #00d4e6;
    transform: translateY(-1px);
}

.notification-btn:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.notification-btn.btn--success {
    background: #00a32a;
    color: #fff;
}

.notification-btn.btn--success:hover {
    background: #008a20;
}

/* Message Styles */
.notification-message {
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    animation: slideIn 0.3s ease;
}

.notification-message--success {
    background: #d1edcc;
    color: #00a32a;
    border: 1px solid #a7d4a7;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .notification-form {
        gap: 8px;
    }
    
    .notification-email,
    .notification-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* Integration with existing button styles */
.good-actions__btn.notification-btn {
    background: #00f0ff;
    color: #101010;
    border: 1px solid #00f0ff;
}

.good-actions__btn.notification-btn:hover:not(:disabled) {
    background: #00d4e6;
    border-color: #00d4e6;
}

.good-actions__btn.notification-btn:disabled {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
}






