/* ==========================================
   1. GLOBAL WRAPPERS & LAYOUT
   ========================================== */
.full-center-wrapper {
    /* max-width: 600px; */
    margin: 20px auto 40px;
    /* font-family: 'Inter', sans-serif; */
}

.content-slide {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* ==========================================
   2. TYPOGRAPHY & HEADERS
   ========================================== */
.content-header,
.ui-header {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.ui-header.size-xl {
    font-size: 2.2rem;
}

.content-subheader {
    font-size: 1.25rem;
    color: #25618a;
    font-weight: 600;
}

.ui-subheader {
        color: #212529bf;
    font-size: 1.1rem;
    margin: 16px 0;
}

/* ==========================================
   3. RENDER TYPE: IMAGE GRID & CARDS
   ========================================== */
.options-grid,
.options-grid-checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.option-card.image-card {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 30px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    text-align: center;
}

.option-card.image-card:hover {
    background: #f1f1f1;
}

.option-card.image-card.selected {
    border: 3px solid #25618a;
    background-color: #f0faff;
}

.option-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}
/* .option-image.low-size {
    width: 68px;
    height: 68px;
} */
.option-label {
    color: #212529;
    font-size: 20px;
}

/* ==========================================
   4. RENDER TYPE: SIMPLE LIST (Vertical)
   ========================================== */
.options-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.list-item-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
}

.list-item-row.selected {
    border-color: #558ee9;
    background-color: #c5dafb;
    font-weight: 500;
}

/* ==========================================
   5. SHARED INDICATORS (Squares & Circles)
   ========================================== */

/* Square Checkbox */
.custom-square-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #25618a;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

/* Radio Circle */
.custom-radio-circle {
    width: 16px;
    height: 16px;
    border: 2px solid #25618a;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hidden for Image Cards (Per your request) */
.option-card.image-card .custom-square-checkbox,
.option-card.image-card .custom-radio-circle {
    display: none !important;
}

/* Visible for standard lists */
.list-item-row .custom-square-checkbox,
.list-item-row .custom-radio-circle {
    display: flex;
}

.selected .custom-square-checkbox {
    background-color: #25618a;
    border-color: #25618a;
    color:white;
}

.selected .custom-square-checkbox::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    left: 5px;
    top: 4px;
}

.selected .custom-square-checkbox::after {
    content: '✓';
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    left: 10px;
    top: 4px;
}

.selected .custom-radio-circle {
    background-color: #25618a;
    /* box-shadow: inset 0 0 0 4px #fff; */
}

/* ==========================================
   6. UNIFIED BOXED INPUTS (Matches image_f38f7d.png & image_f406eb.png)
   ========================================== */
.bmi-input-container {
    width: 100%;
    margin-top: 20px;
}

/* Container for Height labels and inputs */
.height-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

/* Each box/label pair */
.bmi-input-group,
.flex-fill {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bmi-input-group label,
.flex-fill label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
}

/* Boxed design for all inputs and selects */
.bmi-field,
.form-control-custom,
select,
input[type="text"],
input[type="number"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    box-sizing: border-box;
    line-height: 1.25rem;
}

/* Placeholder color */
::placeholder {
    color: #ccc;
}

/* Select Arrow */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.bmi-field:focus,
.form-control-custom:focus,
select:focus,
input:focus {
    border-color: #25618a;
}

/* Center and space the weight field */
.weight-input-wrapper,
.mt-3 {
    width: 100%;
    margin-top: 20px;
}

/* ==========================================
   7. BUTTONS
   ========================================== */
.btn-next {
    background-color: #25618a;
    color: #fff;
    border: none;
    padding: 12px 38px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(10, 176, 251, 0.3);
}

.btn-next:hover {
    background-color: #0c3a59;
}
.btn-back{
    margin-top: 10px;
    text-align: center;
}
.question-title{
    letter-spacing: -0.01em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
    color: #212529;
}
.question-title span{
    color: #25618a !important;
}
.ui-question{
    font-size: 2rem;
    color: #212529;
    margin-bottom: 1rem;
}
.question-title span.green{
    color: rgb(119, 157, 124) !important;
}
.disqualified-icon img{
    width: 70px;
}
/* responsive user intake */


@media (max-width: 767px) {
.full-center-wrapper{
    padding: 0 20px;
}

.question-title{
    font-size: 32px;
}
.ui-question {
    font-size: 1.6rem;
}
.option-card.image-card{
    padding: 15px;
}
.option-image {
    width: 60px;
    height: 60px;
}
.option-label {
    font-size: 16px;
}
}
