/* Factory6 Answer Fields Styling */

.f6-answer-fields {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Access Denied */
.f6-access-denied {
    text-align: center;
    padding: 40px 20px;
}

.f6-access-denied h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.f6-access-denied p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.f6-access-denied strong {
    color: #333;
    font-size: 18px;
}

.f6-purchase-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #fff !important;
    background: #4CAF50;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    margin: 20px 0;
}

.f6-purchase-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    color: #fff !important;
}

.f6-small-text {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-top: 30px;
}

.f6-answer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.f6-answer-field {
    display: flex;
    flex-direction: column;
}

.f6-answer-field label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.f6-input-text,
.f6-input-numeric {
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.f6-input-text:focus,
.f6-input-numeric:focus {
    outline: none;
    border-color: #4CAF50;
}

.f6-input-numeric {
    max-width: 200px;
}

.f6-submit-button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    background: #4CAF50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.f6-submit-button:hover {
    background: #45a049;
    color: #fff !important;
}

.f6-submit-button:disabled {
    background: #ccc;
    color: #666 !important;
    cursor: not-allowed;
}

.f6-message {
    padding: 12px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    display: none;
}

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

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

/* Loading state */
.f6-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .f6-answer-fields {
        margin: 20px;
        padding: 20px;
    }
}
