/* Test Color Changes Page Styles */

.test-color-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.test-color-page h2 {
    color: #333;
    margin-bottom: 20px;
}

.test-color-page .error-message {
    color: red;
    font-weight: bold;
}

.test-color-page .slide-test-card {
    border: 1px solid #ddd;
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.test-color-page .slide-test-card h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.test-color-page .test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.test-color-page .color-settings h4,
.test-color-page .preview h4 {
    margin: 0 0 10px 0;
    color: #555;
}

.test-color-page .color-settings ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.test-color-page .color-settings li {
    margin-bottom: 8px;
    font-size: 14px;
}

.test-color-page .color-settings .color-value {
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(0,0,0,0.1);
}

.test-color-page .preview-box {
    background: var(--preview-bg, #f6f6f6);
    padding: 20px;
    border-radius: 8px;
    min-height: 200px;
}

.test-color-page .preview-subtitle {
    font-size: 18px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: 500;
}

.test-color-page .preview-title {
    font-size: 32px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
}

.test-color-page .preview-description {
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.test-color-page .preview-advantages {
    margin: 0;
    padding-left: 20px;
}

.test-color-page .preview-advantages li {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.test-color-page .edit-button {
    background: #0073aa;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin-top: 15px;
    transition: background-color 0.2s;
}

.test-color-page .edit-button:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

.test-color-page .instructions-box {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.test-color-page .instructions-box h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.test-color-page .instructions-box ol {
    margin: 0;
    padding-left: 20px;
}

.test-color-page .instructions-box li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.test-color-page .tips-box {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.test-color-page .tips-box h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.test-color-page .tips-box ul {
    margin: 0;
    padding-left: 20px;
}

.test-color-page .tips-box li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .test-color-page .test-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .test-color-page .preview-title {
        font-size: 24px;
    }
    
    .test-color-page .preview-subtitle {
        font-size: 16px;
    }
} 