/* dcsasalestest.css */
.dcsasalestest-wrapper {
    background-color: #121517;
    color: #e0e6ed;
    padding: 30px;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
}
.dcsasalestest-step { display: none; animation: fadeIn 0.4s ease; }
.dcsasalestest-step.active { display: block; }
.dcsasalestest-wrapper h2, .dcsasalestest-wrapper h3 { color: #4ade80; margin-top: 0; }
.dcsasalestest-form-group input, .dcsasalestest-question select, .dcsasalestest-question textarea {
    width: 100%; background-color: #1e2327; color: #e0e6ed; border: 1px solid #30363d;
    padding: 12px; margin-bottom: 15px; border-radius: 5px;
}
.dcsasalestest-question {
    background-color: #1e2327; padding: 20px; border-radius: 6px; margin-bottom: 20px; border-left: 4px solid #4ade80;
}
.dcsasalestest-question p { font-weight: 600; margin-top: 0; }
.dcsasalestest-question label { display: block; margin-bottom: 10px; cursor: pointer; }
.dcsasalestest-btn {
    background-color: #4ade80; color: #121517; border: none; padding: 12px 24px;
    font-size: 16px; font-weight: bold; border-radius: 5px; cursor: pointer; transition: background-color 0.2s; width: 100%;
}
.dcsasalestest-btn:hover { background-color: #22c55e; }
.dcsasalestest-consent, .dcsasalestest-warning { font-size: 13px; color: #94a3b8; margin-bottom: 20px; display: block; }
.dcsasalestest-warning { color: #fca5a5; }
.viral-share { text-align: center; margin-top: 20px; }
.viral-share a { color: #4ade80; text-decoration: underline; margin: 0 10px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }