.cl-quiz-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.cl-quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}
.cl-quiz-header.align-center {
    justify-content: center;
    position: relative;
}
.cl-quiz-header.align-center h2 {
    text-align: center;
}
.cl-quiz-header.align-center .cl-reset-icon {
    position: absolute;
    right: 0;
}
.cl-quiz-header.align-left {
    justify-content: flex-start;
}
.cl-quiz-header.align-left h2 {
    text-align: left;
    margin-right: 15px;
}
.cl-quiz-header.align-left .cl-reset-icon {
    margin-left: auto;
}
.cl-quiz-wrapper h2 {
    margin: 0;
    color: #333;
}
.cl-quiz-container {
    max-width: 600px;
    margin: 0 auto;
    color: #333;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}
.cl-reset-icon {
    color: #666;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cl-reset-icon:hover {
    opacity: 1;
    color: #000;
    transform: rotate(-30deg);
}
.cl-step h3 {
    margin-top: 0;
    color: #0056b3;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}
.cl-question {
    margin: 20px 0;
}
.cl-question label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    line-height: 1.4;
}
.cl-note {
    font-size: 0.85em;
    color: #666;
    margin-top: -5px;
    margin-bottom: 15px;
    font-style: italic;
}
.cl-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cl-options.cl-col {
    flex-direction: column;
}
.cl-btn {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    color: #495057;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cl-btn:hover {
    background: #e9ecef;
}
.cl-btn.selected {
    background: #0056b3;
    color: #ffffff !important;
    border-color: #0056b3;
}
.cl-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.cl-checkboxes label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.cl-checkboxes input {
    margin: 0;
}
.cl-submit-btn {
    background: #28a745;
    color: #fff !important;
    border-color: #28a745;
    width: 100%;
    font-weight: bold;
}
.cl-submit-btn:hover {
    background: #218838;
}
.cl-hidden {
    display: none !important;
}
.cl-result-box {
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}
.cl-result-box.qualified {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.cl-result-box.potential {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
.cl-result-box.not-eligible {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.cl-action-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #0056b3;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    border: none;
}
.cl-action-btn:hover {
    background: #004494;
}
.cl-bmi-calculator {
    background: #f4f6f8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #e1e4e8;
}
.cl-calc-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}
.cl-calc-inputs input {
    width: 70px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.cl-calc-btn {
    background: #0056b3;
    color: #ffffff !important;
    border: none;
    padding: 9px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.cl-calc-btn:hover {
    background: #004494;
}