/**
 * RayWP Accessibility Admin Styles
 */

/* Dashboard Header */
.raywp-admin-header {
    padding-bottom: 20px;
}

.raywp-dashboard-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.raywp-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.raywp-dashboard-header h1 {
    margin: 0;
    color: #1d2327;
    font-size: 28px;
    font-weight: 600;
}

/* Dashboard Styles */
.raywp-dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.raywp-widget {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.raywp-widget h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.raywp-widget ul {
    margin: 10px 0;
    padding-left: 20px;
}

.raywp-widget .button {
    margin: 5px 0;
    width: 100%;
}

/* Form Styles */
.raywp-form {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.raywp-form .form-table th {
    width: 200px;
}

/* ARIA Manager Styles */
.raywp-aria-manager {
    max-width: 1200px;
}

#selector-test-results {
    margin-top: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    display: none;
}

#selector-test-results.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#selector-test-results.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Form Scanner Styles */
.raywp-form-scanner {
    max-width: 1200px;
}

#scan-results {
    margin-top: 20px;
}

.form-scan-result {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0;
}

.form-scan-result h3 {
    margin-top: 0;
}

.issue-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.issue-item {
    padding: 8px;
    margin: 5px 0;
    border-left: 4px solid #ddd;
    background: #f9f9f9;
}

.issue-item.severity-high {
    border-left-color: #dc3545;
}

.issue-item.severity-medium {
    border-left-color: #ffc107;
}

.issue-item.severity-low {
    border-left-color: #28a745;
}

/* Reports Styles */
.raywp-reports {
    max-width: 1200px;
}

.raywp-report-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.raywp-report-section h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Loading States */
.raywp-loading {
    opacity: 0.6;
    pointer-events: none;
}

.raywp-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: raywp-spin 1s linear infinite;
}

@keyframes raywp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Detailed Accessibility Issue Styles */
.detailed-scan-results {
    margin-top: 20px;
}

.page-results {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
}

.page-results h4 {
    margin: 0;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    border-radius: 5px 5px 0 0;
}

.page-results h4 a {
    text-decoration: none;
    color: #0073aa;
}

.page-results h4 a:hover {
    text-decoration: underline;
}

.accessibility-issue {
    border-bottom: 1px solid #eee;
    margin: 0;
}

.accessibility-issue:last-child {
    border-bottom: none;
}

.issue-header {
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    transition: background-color 0.2s ease;
}

.issue-header:hover {
    background: #f8f9fa;
}

.severity-badge {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    min-width: 60px;
    text-align: center;
}

.severity-badge.severity-high {
    background-color: #d63384;
}

.severity-badge.severity-medium {
    background-color: #fd7e14;
}

.severity-badge.severity-low {
    background-color: #6c757d;
}

.severity-badge.severity-critical {
    background-color: #dc3545;
}

.issue-type {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
}

.issue-message {
    flex: 1;
    color: #212529;
}

.toggle-arrow {
    color: #6c757d;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.issue-details {
    padding: 0 15px 15px 15px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.issue-section {
    margin-bottom: 15px;
}

.issue-section:last-child {
    margin-bottom: 0;
}

.issue-section strong {
    display: block;
    color: #495057;
    margin-bottom: 5px;
    font-size: 14px;
}

.issue-section p {
    margin: 0 0 10px 0;
    line-height: 1.5;
    color: #212529;
}

.issue-section code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 13px;
    color: #495057;
    border: 1px solid #ced4da;
}

.issue-section pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.4;
    margin: 10px 0;
}

.issue-section pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
}

.issue-section details {
    margin: 10px 0;
}

.issue-section summary {
    cursor: pointer;
    font-weight: 600;
    color: #0073aa;
    margin-bottom: 10px;
}

.issue-section summary:hover {
    text-decoration: underline;
}

.issue-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
}

.issue-actions .button {
    font-size: 13px;
    padding: 6px 12px;
    height: auto;
    line-height: 1.4;
}

/* Severity-based styling for issue containers */
.accessibility-issue.severity-critical {
    border-left: 4px solid #dc3545;
}

.accessibility-issue.severity-high {
    border-left: 4px solid #d63384;
}

.accessibility-issue.severity-medium {
    border-left: 4px solid #fd7e14;
}

.accessibility-issue.severity-low {
    border-left: 4px solid #6c757d;
}

/* Severity styling in summary lists */
.severity-critical {
    color: #dc3545;
    font-weight: 600;
}

.severity-high {
    color: #d63384;
    font-weight: 600;
}

.severity-medium {
    color: #fd7e14;
    font-weight: 600;
}

.severity-low {
    color: #6c757d;
    font-weight: 600;
}

/* Two Column Layout */
.raywp-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.raywp-column-left,
.raywp-column-right {
    background: #fff;
}

/* Accessibility Standards Section */
.raywp-accessibility-standards {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.raywp-accessibility-standards h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1d2327;
    font-size: 18px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.raywp-standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.raywp-standard {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #0073aa;
}

.raywp-standard h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #0073aa;
    font-size: 16px;
    font-weight: 600;
}

.raywp-standard p {
    margin: 0 0 12px 0;
    line-height: 1.6;
    color: #3c4043;
}

.raywp-standard a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.raywp-standard a:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Color Override Styles */
#raywp-color-overrides-section {
    background: #f8f9fa;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-top: 20px;
}

#raywp-color-overrides-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #23282d;
    font-size: 16px;
}

.raywp-color-override-rule {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.raywp-color-override-rule:hover {
    border-color: #0073aa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.raywp-color-override-rule .rule-display {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.raywp-color-override-rule strong {
    font-family: monospace;
    font-size: 14px;
    color: #0073aa;
    background: #f0f8ff;
    padding: 4px 8px;
    border-radius: 3px;
}

.raywp-color-override-rule .button-link {
    margin-left: auto;
    color: #a00;
}

.raywp-color-override-rule .button-link:hover {
    color: #dc3232;
}

#raywp-add-color-override {
    background: #ffffff;
    border: 2px solid #0073aa;
    border-radius: 6px;
}

#raywp-add-color-override h5 {
    margin: 0 0 15px 0;
    color: #0073aa;
    font-size: 15px;
    font-weight: 600;
}

#raywp-add-color-override table {
    margin: 0;
}

#raywp-add-color-override td {
    padding: 8px 0;
}

#raywp-add-color-override input[type="text"] {
    width: 100%;
    max-width: 300px;
}

#raywp-add-color-override .wp-picker-container {
    display: inline-block;
}

#color-override-message {
    display: inline-block;
    font-weight: 600;
}

/* Dashboard Layout */
.raywp-dashboard-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.raywp-dashboard-left .raywp-dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
}

.raywp-dashboard-right {
    /* Contains Help Section */
}

/* Help Section - Dark blue card */
.raywp-help-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    height: fit-content;
}

.raywp-help-section h2 {
    color: white;
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.raywp-help-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.raywp-help-section .button-hero {
    background: white;
    color: #1e3a5f;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.raywp-help-section .button-hero:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* Quick Start Guide Section */
.raywp-quickstart {
    background: #f0f6fc;
    border: 2px solid #0073aa;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
}

.raywp-quickstart h2 {
    color: #0073aa;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
}

.raywp-quickstart > p {
    color: #3c4043;
    margin-bottom: 20px;
}

.quickstart-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.quickstart-step {
    background: white;
    border: 1px solid #c3c4c7;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
    padding: 20px;
}

.quickstart-step .step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.quickstart-step .step-icon {
    width: 32px;
    height: 32px;
    background: #0073aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quickstart-step .step-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

/* Step 1: Enable Basic Fixes - Toggle/switch icon */
.quickstart-step .step-icon-settings::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M12 4H8C5.79 4 4 5.79 4 8s1.79 4 4 4h4c2.21 0 4-1.79 4-4s-1.79-4-4-4zm0 6H8c-1.1 0-2-.9-2-2s.9-2 2-2h4c1.1 0 2 .9 2 2s-.9 2-2 2zM8 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/></svg>');
}

/* Step 2: Run Your First Scan - Magnifying glass/search icon */
.quickstart-step .step-icon-scan::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M12.14 4.18a5.94 5.94 0 00-4.28 1.77 5.94 5.94 0 00-1.77 4.28c0 1.59.59 3.09 1.77 4.28a5.94 5.94 0 004.28 1.77c1.19 0 2.32-.35 3.27-.94l3.54 3.54 1.41-1.41-3.54-3.54c.59-.95.94-2.08.94-3.27 0-1.59-.59-3.09-1.77-4.28a5.94 5.94 0 00-4.85-1.2zm.08 2.12c.94 0 1.84.37 2.5 1.03a3.52 3.52 0 011.03 2.5c0 .94-.37 1.84-1.03 2.5a3.52 3.52 0 01-2.5 1.03c-.94 0-1.84-.37-2.5-1.03a3.52 3.52 0 01-1.03-2.5c0-.94.37-1.84 1.03-2.5a3.52 3.52 0 012.5-1.03z"/></svg>');
}

/* Step 3: Fix Color Contrast - Contrast circle icon */
.quickstart-step .step-icon-contrast::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="none" stroke="white" stroke-width="2"/><path d="M10 2a8 8 0 000 16V2z" fill="white"/></svg>');
}

/* Step 4: Add ARIA Rules - Code brackets icon */
.quickstart-step .step-icon-aria::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M6 4L1 10l5 6 1.5-1.5L4 10l3.5-4.5L6 4zm8 0l-1.5 1.5L16 10l-3.5 4.5L14 16l5-6-5-6z"/></svg>');
}

.quickstart-step h3 {
    margin: 0;
    font-size: 15px;
    color: #1d2327;
}

.quickstart-step p {
    margin: 0;
    color: #50575e;
    font-size: 13px;
    line-height: 1.5;
}

.quickstart-step a {
    color: #0073aa;
    text-decoration: none;
}

.quickstart-step a:hover {
    text-decoration: underline;
}

/* Pro Tip styling */
.raywp-quickstart .pro-tip {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 4px;
    border-left: 4px solid #00a32a;
}

.raywp-quickstart .pro-tip strong {
    color: #00a32a;
}

/* How This Plugin Works Section */
.raywp-how-it-works {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
}

.raywp-how-it-works h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1d2327;
    font-size: 20px;
    font-weight: 600;
}

.raywp-how-it-works > p {
    color: #50575e;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Process Steps - 3 Column Layout */
.raywp-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.process-step {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    position: relative;
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 15px;
}

.process-step h3 {
    margin: 0 0 10px 0;
    color: #1d2327;
    font-size: 16px;
    font-weight: 600;
}

.process-step p {
    margin: 0;
    color: #50575e;
    font-size: 14px;
    line-height: 1.5;
}

/* Advantages Section */
.advantages-section {
    background: #f0f6fc;
    border-left: 4px solid #0073aa;
    border-radius: 0 8px 8px 0;
    padding: 25px 30px;
}

.advantages-section h3 {
    margin: 0 0 15px 0;
    color: #0073aa;
    font-size: 17px;
    font-weight: 600;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantages-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #3c4043;
}

.advantages-list li:last-child {
    margin-bottom: 0;
}

.advantages-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #00a32a;
    font-weight: bold;
    font-size: 16px;
}

.advantages-list li strong {
    color: #1d2327;
}

/* Features Accordion */
.raywp-features-accordion {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.raywp-features-accordion .accordion-toggle {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    margin: 0;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    border: none;
}

.raywp-features-accordion .accordion-toggle:hover {
    background: linear-gradient(135deg, #1a3252 0%, #264a73 100%);
}

.raywp-features-accordion .accordion-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.raywp-features-accordion .accordion-content {
    padding: 25px;
}

/* Features Grid - 2 Column Layout */
.raywp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.raywp-feature-category {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 20px;
}

.raywp-feature-category h4 {
    margin: 0 0 15px 0;
    color: #1d2327;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.raywp-feature-category ul {
    margin: 0;
    padding-left: 20px;
}

.raywp-feature-category li {
    margin-bottom: 8px;
    color: #50575e;
    font-size: 13px;
    line-height: 1.5;
}

.raywp-feature-category li:last-child {
    margin-bottom: 0;
}

/* Feature Icons */
.raywp-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.raywp-icon-controls {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%230073aa"><path d="M7 3H5v14h2V3zm10 0h-2v6h2V3zm-6 0h-2v4h2V3zm6 8h-2v6h2v-6zm-6 2h-2v4h2v-4z"/></svg>');
}

.raywp-icon-analytics {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%230073aa"><path d="M18 18V2H2v16h16zM16 5H4v2h12V5zm0 4H4v2h12V9zm-4 4H4v2h8v-2z"/></svg>');
}

.raywp-icon-target {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%230073aa"><path d="M10 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></svg>');
}

.raywp-icon-form {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%230073aa"><path d="M2 2h16v16H2V2zm2 2v12h12V4H4zm2 2h8v2H6V6zm0 4h8v2H6v-2zm0 4h4v2H6v-2z"/></svg>');
}

.raywp-icon-navigation {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%230073aa"><path d="M10 2L4 8l1.5 1.5L9 6v12h2V6l3.5 3.5L16 8z"/></svg>');
}

.raywp-icon-image {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%230073aa"><path d="M2 2h16v16H2V2zm2 2v12h12V4H4zm8 3.5c0 .83-.67 1.5-1.5 1.5S9 8.33 9 7.5 9.67 6 10.5 6s1.5.67 1.5 1.5zM6 14l2-4 2 3 3-4 3 5H6z"/></svg>');
}

.raywp-icon-structure {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%230073aa"><path d="M9 1v8H2v10h16V1H9zm6 16H4v-6h4V3h7v14z"/></svg>');
}

.raywp-icon-visual {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%230073aa"><path d="M10 4c-4 0-7.5 3-7.5 6s3.5 6 7.5 6 7.5-3 7.5-6-3.5-6-7.5-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/></svg>');
}

/* Quickstart Tip (Pro Tip) */
.quickstart-tip {
    margin-top: 20px;
    padding: 15px 20px;
    background: white;
    border-radius: 4px;
    border-left: 4px solid #00a32a;
    color: #3c4043;
    line-height: 1.5;
}

.quickstart-tip strong {
    color: #00a32a;
}

/* Responsive */
@media (max-width: 1200px) {
    .raywp-dashboard-top {
        grid-template-columns: 1fr;
    }

    .raywp-help-section {
        max-width: 400px;
    }

    .raywp-process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .raywp-dashboard-widgets {
        grid-template-columns: 1fr;
    }

    .raywp-dashboard-left .raywp-dashboard-widgets {
        grid-template-columns: 1fr;
    }

    .quickstart-steps {
        grid-template-columns: 1fr;
    }

    .raywp-two-column-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .raywp-standards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .raywp-features-grid {
        grid-template-columns: 1fr;
    }

    .raywp-form .form-table th {
        width: auto;
        display: block;
        margin-bottom: 5px;
    }
}