/**
 * Yaraa AI Sales Agent - Consent Page Styles
 *
 * @package Yaraa_AI_Sales_Agent
 */
.yaraa-consent-wrap {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.yaraa-consent-wrap h1 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1d2327;
}

.yaraa-consent-wrap .subtitle {
    color: #646970;
    font-size: 14px;
    margin-bottom: 30px;
}

.yaraa-consent-section {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.yaraa-consent-section h3 {
    margin-top: 0;
    font-size: 16px;
    color: #1d2327;
}

.yaraa-consent-section p,
.yaraa-consent-section li {
    font-size: 13px;
    color: #50575e;
    line-height: 1.6;
}

.yaraa-consent-section ul {
    margin: 10px 0 10px 20px;
}

.yaraa-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.yaraa-consent-checkbox input[type="checkbox"] {
    margin-top: 3px;
    min-width: 18px;
}

.yaraa-consent-checkbox label {
    font-size: 13px;
    color: #1d2327;
    cursor: pointer;
}

.yaraa-consent-checkbox label a {
    color: #2271b1;
}

.yaraa-consent-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.yaraa-consent-actions .button-primary {
    padding: 8px 24px;
    font-size: 14px;
}

.yaraa-consent-actions .button-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.yaraa-consent-status {
    padding: 12px 16px;
    background: #ecf7ed;
    border-left: 4px solid #00a32a;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

.yaraa-consent-notice {
    display: none;
    padding: 10px 16px;
    border-radius: 4px;
    margin-top: 12px;
    font-size: 13px;
}

.yaraa-consent-notice.error {
    background: #fcf0f1;
    border-left: 4px solid #d63638;
    color: #d63638;
    display: block;
}

.yaraa-consent-notice.success {
    background: #ecf7ed;
    border-left: 4px solid #00a32a;
    color: #00a32a;
    display: block;
}

.yaraa-consent-hint {
    color: #646970;
    font-size: 13px;
}