 :root {
        --primary-green: #27ae60;
        --dark-green: #1a5c40;
        --border-gray: #e5e7eb;
        --text-gray: #6b7280;
        --accent-blue: #206a85;
        --gradient-start: #199e82;
        --gradient-end: #206785;
    }

    body {
        font-family: "Segoe UI", sans-serif;
        background: #ffffff;
        margin: 0;
    }

    .top-section {
        width: 100%;
        max-width: 900px;
        margin: 40px auto 0 auto;
        padding: 0 20px;
        text-align: center;
    }

    .skip-link {
        display: inline-block;
        text-align: center;
        font-size: 14px;
        color: #000000;
        text-decoration: none;
        font-weight: 500;
        background: #81818112;
        width: 156px;
        border-radius: 5px;
        padding: 6px;
        transition: background 0.3s ease;
    }

    .skip-link:hover {
        background: #81818125;
        text-decoration: underline;
    }

    .page-wrapper {
        width: 100%;
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .progress-wrapper {
        width: 100%;
        max-width: 650px;
        margin-bottom: 40px;
    }

    .progress-container {
        width: 100%;
        height: 6px;
        background: #e5e7eb;
        border-radius: 50px;
        overflow: hidden;
    }

    .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #206a85 0%, #199e82 100%);
        border-radius: 50px;
        width: 35%;
    }

    .modal {
        width: 100%;
        max-width: 650px;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0,0,0,0.06);
        margin-bottom: 40px;
    }

    .modal-header {
        background: white;
        color: #1f2937;
        padding: 22px;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
        position: relative;
    }

    .modal-header h2 {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .close-btn {
        position: absolute;
        right: 20px;
        top: 20px;
        background: transparent;
        border: none;
        color: #6b7280;
        font-size: 1.1rem;
        cursor: pointer;
        text-decoration: none;
    }

    .close-btn:hover {
        color: #374151;
    }

    .modal-body {
        padding: 30px;
    }

    .instruction {
        color: #6b7280;
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .instruction span {
        color: #199e82;
        font-weight: 600;
    }

    .procedure-item {
        display: flex;
        gap: 18px;
        padding: 20px 22px;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        margin-bottom: 14px;
        cursor: pointer;
        transition: all 0.25s ease;
        background: #ffffff;
    }

    .procedure-item:hover {
        border-color: #206a85;
        background: #f9fafb;
    }

    .radio-circle {
        min-width: 22px;
        height: 22px;
        border: 2px solid #d1d5db;
        border-radius: 50%;
        margin-top: 3px;
        position: relative;
        background: white;
        transition: all 0.2s ease;
    }

    .procedure-info {
        flex: 1;
    }

    .procedure-info h3 {
        margin: 0 0 5px;
        font-size: 1rem;
        color: #111827;
        font-weight: 600;
    }

    .procedure-info p {
        margin: 0 0 10px;
        color: #6b7280;
        font-size: 12px;
    }

    /* Initially hide the button */
    .cost-btn {
        display: none;
        margin-top: 10px;
        background: linear-gradient(to right, #199e82, #206785);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        font-size: 0.85rem;
        transition: background 0.2s ease;
        border: none;
    }

    .cost-btn:hover {
        background: #206a85;
    }

    /* Show button only when parent procedure-item has selected class */
    .procedure-item.selected .cost-btn {
        display: inline-block;
    }
.procedure-item.selected .radio-circle {
    border-color: #206a85;
}
    .no-variants {
        text-align: center;
        padding: 40px;
        color: #6b7280;
        background: #f9fafb;
        border-radius: 8px;
    }

    .back-link {
        display: inline-block;
        margin-top: 15px;
        color: #199e82;
        text-decoration: none;
    }

    .back-link:hover {
        text-decoration: underline;
    }
    /* --------- */
    .radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1; /* normal border */
    border-radius: 50%;
    position: relative;
    transition: 0.3s ease;
}

/* When card selected */
.procedure-item.selected .radio-circle {
    border: 2px solid #1f8a70; /* active border */
}

/* Inner dot */
.procedure-item.selected .radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #1f8a70;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}