/* Five Flavours Personality Content Styles */
/* Extracted from ff-personality-content-shortcodes.php */

/* Chart Container Styles */
.ff-chart-container {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ff-chart-error {
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    text-align: center;
}

/* Save Results Box Styles */
.ff-save-results-box {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #333;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ff-access-icon {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1;
    color: #ff6900;
}

.ff-access-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #333;
}

.ff-access-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    color: #666;
}

.ff-magic-link-form {
    margin: 0 0 24px 0;
}

.ff-form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ff-name-input,
.ff-email-input {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: #f9f9f9;
    color: #333;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.ff-name-input:focus,
.ff-email-input:focus {
    outline: none;
    border-color: #ff6900;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.1);
}

.ff-form-row {
    display: flex;
    gap: 12px;
}

.ff-send-button {
    padding: 16px 32px;
    background: #ff6900;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.ff-send-button:hover:not(:disabled) {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.ff-send-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ff-email-confirmed {
    background: #e8f5e9;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.ff-email-confirmed p {
    margin: 0 0 16px 0;
    font-size: 18px;
    color: #2e7d32;
}

.ff-dashboard-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ff6900;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s;
}

.ff-dashboard-button:hover {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
    color: white;
    text-decoration: none;
}

.ff-access-note {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

.ff-form-message {
    margin-top: 16px;
    font-size: 16px;
}

.ff-form-message .ff-success {
    background: rgba(76, 175, 80, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin: 0;
}

.ff-form-message .ff-error {
    background: rgba(244, 67, 54, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin: 0;
}

@media (max-width: 768px) {
    .ff-save-results-box {
        padding: 30px 20px;
        margin: 20px;
    }

    .ff-access-title {
        font-size: 24px;
    }

    .ff-access-text {
        font-size: 16px;
    }

    .ff-form-row {
        flex-direction: column;
    }

    .ff-send-button {
        width: 100%;
    }
}
