/**
 * Tarot Email Basic Styles
 */

/* Email Toggle Container */
.tarot-email-toggle-container {
    text-align: center;
    margin: 20px 0;
}

/* Email Toggle Button */
.tarot-email-toggle {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6a4c93;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.tarot-email-toggle:hover {
    background-color: #8a6cb3;
    color: white;
    text-decoration: none;
}

/* Email Form Container */
.tarot-email-container {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f5ff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

/* Email Form Title */
.tarot-email-title {
    color: #6a4c93;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
}

/* Form Fields */
.tarot-form-field {
    margin-bottom: 15px;
}

.tarot-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.tarot-form-field input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Submit Button */
.tarot-email-submit {
    background-color: #6a4c93;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
}

.tarot-email-submit:hover {
    background-color: #8a6cb3;
}

.tarot-email-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Response Messages */
.tarot-email-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.tarot-email-response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tarot-email-response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Privacy Notice */
.tarot-email-privacy {
    margin-top: 15px;
    font-size: 12px;
    color: #777;
    text-align: center;
}