/* Newsletter Horoscope Reminders Frontend Styles */

/* Basic styling for frontend elements */
.nhr-frontend-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.nhr-frontend-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.nhr-frontend-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.nhr-frontend-form button {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.nhr-frontend-form button:hover {
    background: #005a87;
}

.nhr-frontend-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

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

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

/* Responsive design */
@media (max-width: 768px) {
    .nhr-frontend-container {
        padding: 10px;
    }
    
    .nhr-frontend-form {
        padding: 15px;
    }
}
