/**
 * Express Entry Eligibility Checker — sky/cyan accent
 */
#bt-ee-elig.bt-wrap--ee {
    --bt-primary: #0284c7;
    --bt-primary-dark: #0369a1;
    --bt-accent: #0ea5e9;
}

.bt-ee-intro {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.bt-ee-intro a {
    color: var(--bt-primary, #0284c7);
    font-weight: 600;
}

.bt-ee-summary {
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.bt-ee-summary--ok {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
}

.bt-ee-summary--no {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fca5a5;
}

.bt-ee-summary__status {
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
}

.bt-ee-summary__programs {
    font-size: 0.875rem;
    color: #374151;
    margin: 0.35rem 0 0;
}

.bt-ee-form .bt-acc {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
}

.bt-ee-form .bt-acc__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.bt-ee-form .bt-acc__title {
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bt-ee-form .bt-acc__body {
    display: none;
    padding: 0 1rem 1rem;
}

.bt-ee-form .bt-acc--open .bt-acc__body {
    display: block;
}

.bt-ee-form .bt-acc--open .bt-acc__chev {
    transform: rotate(180deg);
}

.bt-ee-form .bt-q {
    margin-top: 1rem;
}

.bt-ee-form .bt-q__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.bt-ee-form .bt-q__hint {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.35rem;
}

.bt-ee-form .bt-select,
.bt-ee-form .bt-input {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
}

.bt-ee-form .bt-radios {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
    margin-top: 0.25rem;
}

.bt-ee-form .bt-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.bt-ee-form .bt-radio:hover {
    border-color: var(--bt-primary, #0284c7);
    background: #f0f9ff;
}

.bt-ee-form .bt-radio input[type="radio"] {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin: 0;
    accent-color: var(--bt-primary, #0284c7);
    cursor: pointer;
}

.bt-ee-form .bt-radio > span {
    flex: 1;
    min-width: 0;
}

.bt-ee-form .bt-radio:has(input:checked) {
    border-color: var(--bt-primary, #0284c7);
    background: #e0f2fe;
    color: #0c4a6e;
    font-weight: 500;
}

.bt-ee-submit {
    margin-top: 1rem;
    width: 100%;
}

.bt-ee-results {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.bt-ee-results__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #111827;
}

.bt-ee-cards {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .bt-ee-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bt-ee-card {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    background: #fff;
}

.bt-ee-card--ok {
    border-color: #6ee7b7;
    background: #f0fdf4;
}

.bt-ee-card--no {
    border-color: #fecaca;
    background: #fef2f2;
}

.bt-ee-card__head {
    margin-bottom: 0.75rem;
}

.bt-ee-card__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    margin-bottom: 0.35rem;
}

.bt-ee-card--ok .bt-ee-card__badge {
    background: #059669;
    color: #fff;
}

.bt-ee-card--no .bt-ee-card__badge {
    background: #dc2626;
    color: #fff;
}

.bt-ee-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: #111827;
    line-height: 1.35;
}

.bt-ee-card__msg {
    font-size: 0.8rem;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.bt-ee-card__list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.75rem;
    color: #4b5563;
}

.bt-ee-card__score {
    font-size: 0.8rem;
    margin: 0.5rem 0 0;
    color: #065f46;
}

.bt-ee-next {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
}

.bt-ee-next__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #0c4a6e;
}

.bt-ee-next p {
    font-size: 0.875rem;
    color: #334155;
    margin: 0 0 1rem;
    line-height: 1.55;
}

.bt-ee-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1.5rem;
    line-height: 1.5;
}

.bt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.15s, transform 0.15s;
}

.bt-btn--primary {
    background: var(--bt-primary, #0284c7);
    color: #fff;
}

.bt-btn--primary:hover {
    filter: brightness(1.08);
}

.bt-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.bt-btn--secondary {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    background: #fff;
    border: 2px solid var(--bt-primary, #0284c7);
    color: var(--bt-primary, #0284c7);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}
