/* Metahuman Subscriptions — Frontend Plan Selector */

.mhs-plan-selector {
    margin-bottom: 16px;
}

.mhs-plan-selector__label {
    margin-bottom: 8px;
}

.mhs-plan-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.mhs-plan-option:hover {
    border-color: #aaa;
}

.mhs-plan-option--selected {
    border-color: #f3bb2e;
    background: #fffdf0;
}

.mhs-plan-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.mhs-plan-option__text {
    font-size: 15px;
}

/* My Account status badges */
.mhs-status--active    { color: #2ebb77; font-weight: 600; }
.mhs-status--past_due  { color: #e67e22; font-weight: 600; }
.mhs-status--cancelled { color: #999; }
.mhs-status--expired   { color: #999; }
