#mht-due-date-form{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mht-pdd-title{
    font-size: 36px;
    color: white;
    font-family: inherit;
}

.mht-bold-title{
    font-weight: 700;
}
.mht-msg-text{
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2em;
}

.mht-pregnancy-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
}

/* LEFT */
.mht-pregnancy-form {
    background: linear-gradient(135deg, #1f3cff, #0b1fa8);
    padding: 48px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
}


.mht-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.mht-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mht-select,
.mht-field input,
input[type=date] {
    width: 100%;
    padding: 14px 16px !important;
    border-radius: 50px !important;
    border: none;
    background: #fff;
}

/* RIGHT */
.mht-pregnancy-result {
    background: linear-gradient(135deg, #02154f, #000b2e);
    padding: 48px;
    color: #fff;
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
}





.mht-btn-secondary,
.mht-btn-primary {
    background: linear-gradient(90deg, #1CD6D6, #19BCBC) !important;
    border: none !important;
    color: #000F53 !important;
    padding: 14px 30px !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    max-width: fit-content !important;
    font-size: 18px !important;
}


.mht-method.is-active {
    display: block;
}

/* ==== CALENDAR CARD ==== */
.mht-calendar {
    position: relative;
    /* width: 110px; */
    width: 30%;
    height: auto;
    background: #2f49ff;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    flex-shrink: 0;
        display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.mht-calendar-ring {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 12px;
    border-radius: 6px;
    background: #1a2fb8;
}

.mht-calendar-month {
    /* margin-top: 24px; */
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.mht-calendar-day {
    font-size: 44px;
    font-weight: 800;
    /* margin-top: 12px; */
}

.mht-result-meta {
    font-size: 16px;
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==== RESULT GLASS CARD ==== */
.mht-result-glass {
    display: flex;
    gap: 28px;
    /* background: rgba(255,255,255,0.14); */
    border-radius: 22px;
    /* padding: 32px; */
}


.mht-result-week {
    font-size: 28px;
  
}

.mht-progress {
    position: relative;
    width: 100%;
    height: 30px;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    padding: 2px;
}

.mht-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #344DFF, #0026BE);
    border-radius: 50px;
    transition: width 0.6s ease;
    /* position: relative; */

     /* ✅ CENTER TEXT */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fixed center text */
.mht-progress-text {
    position: absolute;
    inset: 0;                      /* top:0 right:0 bottom:0 left:0 */
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 700;
    color: black;
    pointer-events: none;
    white-space: nowrap;
}
.mht-progress-below-text{
    font-size: 12px;

}

/* ==== META TEXT ==== */
.mht-result-date,
.mht-result-age {

    font-size: 15px;
    opacity: 0.95;
}


/* MOBILE */
@media (max-width: 900px) {
    .mht-pregnancy-card {
        grid-template-columns: 1fr;
    }

    .mht-calendar {
    position: relative;
    /* width: 110px; */
    width: 40%;
}
.mht-result-meta {
    width: 60%;
}
}
