/*--------------------------------------
    ADSENSE APPROVAL ASSISTANT - STYLE
---------------------------------------*/

/* General wrapper */
.aaa-generator-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
}

/* Form Title */
.aaa-form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
    text-align: center;
}

.aaa-form-subtitle {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

/* Form Groups */
.aaa-form-group {
    margin-bottom: 20px;
}

/* Inputs, Textarea, Select */
.aaa-input,
.aaa-textarea,
.aaa-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.aaa-input:focus,
.aaa-textarea:focus,
.aaa-select:focus {
    outline: none;
    border-color: #3b82f6; /* Primary Blue */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Checkbox Group */
.aaa-checkbox-group label {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    cursor: pointer;
}

.aaa-checkbox-group input[type="checkbox"] {
    margin-right: 6px;
}

/* Submit Button */
.aaa-btn-generate {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.aaa-btn-generate:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

/* Results Container */
.aaa-results-container {
    margin-top: 30px;
}

/* Individual Result Card */
.aaa-result-card {
    background: #f9f9f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.aaa-result-card:hover {
    transform: translateY(-2px);
}

/* Result Header */
.aaa-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #e0f2fe;
    border-bottom: 1px solid #c7d2fe;
}

.aaa-result-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
}

/* Copy Button */
.aaa-copy-btn {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.aaa-copy-btn:hover {
    background: #2563eb;
}

/* Result Content */
.aaa-result-content {
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Error Box */
.aaa-error-box {
    padding: 12px 15px;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    color: #b91c1c;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Recommendation Card */
.aaa-recommendation-card {
    background: #fff7ed;
    border-left: 4px solid #fb923c;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.aaa-recommendation-card h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #c2410c;
}

.aaa-recommendation-card p {
    margin: 0;
    font-size: 14px;
    color: #78350f;
}

/* Pro Service Card */
.aaa-pro-service-card {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
    transition: transform 0.2s ease;
}

.aaa-pro-service-card:hover {
    transform: translateY(-3px);
}

.aaa-pro-service-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e40af;
}

.aaa-pro-service-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #3b82f6;
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.aaa-pro-service-card a:hover {
    background: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
    .aaa-result-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .aaa-copy-btn {
        margin-top: 8px;
    }
}
