
    .fm-result {
        background: rgba(255,255,255,0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 24px;
        padding: 14px 16px;
        margin-top: 8px;
        border: 1px solid rgba(255,255,255,0.3);
        min-height: 80px;
    }
    
    .fm-result-item {
       
        border-radius: 16px;
        padding: 12px 16px;
        margin-bottom: 8px;
        border: 1px solid rgba(255,255,255,0.2);
        opacity: 0;
        transform: translateY(20px);
        animation: fmCardIn 0.45s forwards ease;
    }
    .fm-result-item:nth-child(1) { animation-delay: 0.03s; }
    .fm-result-item:nth-child(2) { animation-delay: 0.06s; }
    .fm-result-item:nth-child(3) { animation-delay: 0.09s; }
    .fm-result-item:nth-child(4) { animation-delay: 0.12s; }
    .fm-result-item:nth-child(5) { animation-delay: 0.15s; }
    .fm-result-item:nth-child(6) { animation-delay: 0.18s; }
    .fm-result-item:nth-child(7) { animation-delay: 0.21s; }
    .fm-result-item:nth-child(8) { animation-delay: 0.24s; }
    .fm-result-item:nth-child(9) { animation-delay: 0.27s; }
    .fm-result-item:nth-child(10) { animation-delay: 0.30s; }
    
    @keyframes fmCardIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .fm-result-label {
        font-weight: 600;
        font-size: 0.7rem;
        color: #6a4a7a;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .fm-result-value {
        font-weight: 700;
        font-size: 0.95rem;
        color: #1a1a2e;
        margin-top: 2px;
    }
    
    .fm-fertility-meter {
        width: 100%;
        height: 10px;
        background: #e0d5e8;
        border-radius: 10px;
        overflow: hidden;
        margin: 6px 0;
    }
    .fm-fertility-meter .fill {
        height: 100%;
        border-radius: 10px;
        transition: width 0.8s ease;
    }
    .fm-fertility-meter .fill.high { background: linear-gradient(90deg, #27ae60, #2ecc71); }
    .fm-fertility-meter .fill.medium { background: linear-gradient(90deg, #f39c12, #f1c40f); }
    .fm-fertility-meter .fill.low { background: linear-gradient(90deg, #e74c3c, #c0392b); }
    
    /* ===== استایل‌های چرخه ===== */
    .fm-cycle-wrapper {
        background: rgba(255,255,255,0.4);
        border-radius: 20px;
        padding: 12px 8px 8px;
        margin: 4px 0;
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .fm-cycle-scroll {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 12px 0 16px;
        gap: 4px;
        cursor: grab;
    }
    .fm-cycle-scroll.dragging {
        cursor: grabbing;
        user-select: none;
    }
    .fm-cycle-scroll::-webkit-scrollbar { height: 4px; }
    .fm-cycle-scroll::-webkit-scrollbar-track { background: transparent; }
    .fm-cycle-scroll::-webkit-scrollbar-thumb { background: rgba(200,150,200,0.3); border-radius: 10px; }
    
    .fm-cycle-inner {
        display: flex;
        gap: 3px;
        padding: 0 4px;
        min-width: max-content;
    }
    
    .fm-cycle-day {
        flex: 0 0 auto;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        scroll-snap-align: center;
        transition: transform 0.2s ease;
        position: relative;
        background: #f0ebf5;
        font-size: 11px;
        font-weight: 700;
        color: #4a2d5a;
        border: 2px solid transparent;
        opacity: 0;
        transform: scale(0.6);
        animation: fmDayPop 0.4s forwards;
    }
    .fm-cycle-day .day-label {
        position: absolute;
        bottom: -14px;
        font-size: 7px;
        font-weight: 600;
        color: #8a7a9a;
        white-space: nowrap;
    }
    .fm-cycle-day.period {
        background: linear-gradient(135deg, #ffd9df, #ffb3c1);
        border-color: #e74c3c50;
        color: #c0392b;
    }
    .fm-cycle-day.fertile {
        background: linear-gradient(135deg, #fff3d6, #ffe4b8);
        border-color: #f39c1250;
        color: #b7950b;
    }
    .fm-cycle-day.ovulation {
        background: linear-gradient(135deg, #ff6b8a, #ff4d6d);
        border-color: #ff4d6d;
        color: white;
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(255,77,109,0.35);
        animation: fmDayPop 0.4s forwards, fmOvulationPulse 2s infinite;
    }
    .fm-cycle-day.today {
        transform: scale(1.2);
        background: #ff4d6d;
        color: white;
        border: 2px solid #ff4d6d;
        box-shadow: 0 0 20px rgba(255,77,109,0.3);
        z-index: 2;
        animation: fmDayPop 0.4s forwards, fmTodayPulse 2s infinite;
    }
    .fm-cycle-day .fm-icon { font-size: 9px; line-height: 1; }
    
    @keyframes fmDayPop {
        from { opacity: 0; transform: scale(0.6); }
        to { opacity: 1; transform: scale(1); }
    }
    @keyframes fmOvulationPulse {
        0% { transform: scale(1.15); box-shadow: 0 0 20px rgba(255,77,109,0.35); }
        50% { transform: scale(1.25); box-shadow: 0 0 35px rgba(255,77,109,0.55); }
        100% { transform: scale(1.15); box-shadow: 0 0 20px rgba(255,77,109,0.35); }
    }
    @keyframes fmTodayPulse {
        0% { box-shadow: 0 0 0 0 rgba(255,77,109,0.4); }
        70% { box-shadow: 0 0 0 10px rgba(255,77,109,0); }
        100% { box-shadow: 0 0 0 0 rgba(255,77,109,0); }
    }
    
    .fm-cycle-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 8px 0;
        font-size: 0.6rem;
        color: #6a4a7a;
        font-weight: 600;
        flex-wrap: wrap;
        gap: 2px 8px;
    }
    .fm-cycle-info .current-day {
        background: #ff4d6d;
        color: white;
        padding: 1px 10px;
        border-radius: 12px;
        font-size: 0.55rem;
    }
    
    .fm-cycle-legend {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 6px 0 0;
        border-top: 1px solid rgba(0,0,0,0.04);
        margin-top: 6px;
    }
    .fm-cycle-legend span {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 0.6rem;
        color: #6a4a7a;
        font-weight: 600;
    }
    .fm-cycle-legend .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
        flex-shrink: 0;
    }
    .fm-cycle-legend .dot.period { background: #ffb3c1; border: 1px solid #e74c3c40; }
    .fm-cycle-legend .dot.fertile { background: #ffe4b8; border: 1px solid #f39c1240; }
    .fm-cycle-legend .dot.ovulation { background: #ff4d6d; border: 1px solid #ff4d6d; }
    .fm-cycle-legend .dot.today { border: 2px solid #ff4d6d; background: transparent; }
    
    /* ===== استایل‌های اسلایدرهای دایره‌ای ===== */
    .fm-slider-wrapper {
        position: relative;
        width: 250px;
        height: 250px;
        margin: 0 auto 15px auto;
        cursor: pointer;
        max-width: 100%;
    }
    .fm-slider-wrapper svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }
    .fm-circle-bg {
        fill: none;
        stroke: #edf2f7;
        stroke-width: 14;
    }
    .fm-circle-progress {
        fill: none;
        stroke: url(#fmGradient);
        stroke-width: 14;
        stroke-linecap: round;
        transition: stroke-dashoffset 0.05s linear;
    }
    .fm-slider-thumb {
        fill: #ffffff;
        stroke: #fb5a8c;
        stroke-width: 4;
        cursor: grab;
        filter: drop-shadow(0px 4px 6px rgba(251, 90, 140, 0.3));
    }
    .fm-slider-thumb:active { cursor: grabbing; }
    
    .fm-center-labels {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .fm-day-number {
        font-size: 50px;
        font-weight: 900;
        line-height: 1;
        background: linear-gradient(45deg, #fb5a8c, #a06bf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .fm-day-text {
        font-size: 15px;
        font-weight: 700;
        color: #718096;
        margin-top: 5px;
    }
    
    .fm-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .fm-btn-circle {
        background-color: #edf2f7;
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 20px;
        font-weight: bold;
        color: #2d3748;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.2s ease;
    }
    .fm-btn-circle:hover {
        background-color: #fb5a8c;
        color: #fff;
    }
    .fm-btn-circle:active { transform: scale(0.95); }
    
    .fm-month-selector {
        background: #f7fafc;
        border: 1px solid #e2e8f0;
        padding: 8px 16px;
        border-radius: 12px;
        font-family: inherit;
        font-size: 14px;
        font-weight: bold;
        color: #2d3748;
        outline: none;
        cursor: pointer;
    }
    
    /* ===== کلید منظم/نامنظم ===== */
    .fm-toggle-container {
        display: flex;
        background: #edf2f7;
        border-radius: 16px;
       
        position: relative;
        margin-bottom: 20px;
    }
    .fm-toggle-bg {
        position: absolute;
        top: 5px;
        right: 5px;
        bottom: 5px;
        width: calc(50% - 5px);
        background: linear-gradient(45deg, #fb5a8c, #a06bf6);
        border-radius: 12px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
        box-shadow: 0 4px 10px rgba(160, 107, 246, 0.25);
    }
    .fm-toggle-container.irregular .fm-toggle-bg {
        right: calc(50%);
    }
    .fm-toggle-option {
        flex: 1;
        text-align: center;
        padding: 12px 0;
        cursor: pointer;
        font-weight: 800;
        font-size: 15px;
        z-index: 2;
        color: #718096;
        transition: color 0.3s ease;
    }
    .fm-toggle-option.active {
        color: #ffffff;
    }
    
    /* ===== اسلایدرهای ضخیم ===== */
    .fm-settings-circles {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .fm-setting-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
    }
    .fm-setting-title {
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #2d3748;
        text-align: center;
    }
    .fm-slider-wrapper {
        width: 140px;
        height: 140px;
        cursor: pointer;
        max-width: 100%;
    }
    .fm-slider-wrapper svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }
    .fm-thick-bg {
        fill: none;
        stroke: #edf2f7;
        stroke-width: 20;
    }
    .fm-thick-progress {
        fill: none;
        stroke: url(#fmGradient);
        stroke-width: 20;
        stroke-linecap: round;
        transition: stroke-dashoffset 0.05s linear;
    }
    .fm-thick-thumb {
        fill: #ffffff;
        stroke: #fb5a8c;
        stroke-width: 5;
        cursor: grab;
        filter: drop-shadow(0px 3px 5px rgba(251, 90, 140, 0.4));
    }
    .fm-setting-val {
        font-size: 30px;
        font-weight: 900;
        color: #2d3748;
        line-height: 1;
    }
    .fm-setting-unit {
        font-size: 12px;
        font-weight: 700;
        color: #718096;
        margin-top: 4px;
    }
    
    /* ===== گیج ===== */
    .fm-gauge-wrapper {
        position: relative;
        width: 200px;
        height: 200px;
        margin: 0 auto 15px auto;
        cursor: pointer;
        max-width: 100%;
    }
    .fm-gauge-wrapper svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }
    .fm-gauge-bg {
        fill: none;
        stroke: #edf2f7;
        stroke-width: 24;
        stroke-linecap: round;
    }
    .fm-gauge-progress {
        fill: none;
        stroke: url(#fmBlueGradient);
        stroke-width: 24;
        stroke-linecap: round;
        transition: stroke-dashoffset 0.1s ease;
    }
    .fm-gauge-thumb {
        fill: #ffffff;
        stroke: #4facfe;
        stroke-width: 6;
        cursor: grab;
        filter: drop-shadow(0px 4px 6px rgba(79, 172, 254, 0.4));
    }
    .fm-gauge-val {
        font-size: 24px;
        font-weight: 900;
        background: linear-gradient(45deg, #4facfe, #00f2fe);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center;
    }
    .fm-gauge-unit {
        font-size: 13px;
        font-weight: 700;
        color: #718096;
        margin-top: 4px;
    }
    .banner{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner img{
    display: block;
    max-width: 100%;
    position: relative;
}

/* افکت برق */
.banner::after{
    content: "";
    position: absolute;
    top: -20%;
    left: -50%;
    width: 30%;
    height: 140%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.753),
        transparent
    );
    transform: rotate(20deg);
    animation: shine 2.5s infinite;
}

@keyframes shine{
    0%{
        left: -50%;
    }
    100%{
        left: 120%;
    }
}
/* From Uiverse.io by xXJollyHAKERXx */ 
.spinner {
  background-image: linear-gradient(rgb(186, 66, 255) 35%,rgb(0, 225, 255));
  width: 20px;
  height: 20px;
  animation: spinning82341 1.7s linear infinite;
  text-align: center;
  border-radius: 50px;
  filter: blur(1px);
  box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px rgb(0, 225, 255);
}

.spinner1 {
  background-color: rgba(84, 18, 18, 0.45);
  width: 10px;
  height: 10px;
  border-radius: 50px;
  filter: blur(10px);
}

@keyframes spinning82341 {
  to {
    transform: rotate(360deg);
  }
}
.picker-wrapper {
    touch-action: none;
    overscroll-behavior: contain;
}

.bm-body {
    overscroll-behavior: contain;
}
.picker-wrapper {
    height: 180px;
    max-height: 40vh;
    overflow: hidden;
    position: relative;
    touch-action: none;
    overscroll-behavior: contain;
}
.history-list {
    max-height: 180px;
    overflow-y: auto;
    padding-left: 4px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.history-list::-webkit-scrollbar {
    width: 4px;
}

.history-list::-webkit-scrollbar-thumb {
    background: rgba(212,163,115,0.15);
    border-radius: 10px;
}
/* ================================================================ */
/* ===== پاپ‌آپ مخصوص صفحه پزشکان - بدون دکمه بستن ===== */
/* ================================================================ */
/* ================================================================ */
/* ===== ریسپانسیو کارت‌های آمار با container query ===== */
/* ================================================================ */
/* ===== انیمیشن لودینگ ===== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ===== پس‌زمینه لودینگ با شیشه ===== */
.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
    border-radius: 16px;
    padding: 20px;
}
@container (max-width: 580px) {
    .bmi-stats-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .bmi-stats-grid .fat-distribution-card {
        grid-column: 1 / -1 !important;
    }
}

@container (max-width: 400px) {
    .bmi-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .bmi-stats-grid .fat-distribution-card {
        grid-column: 1 / -1 !important;
    }
}
.doctor-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: doctorPopupFadeIn 0.4s ease;
    pointer-events: none; /* اجازه کلیک به محتوای پشت نمی‌دهد */

}

@keyframes doctorPopupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.doctor-popup-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 28px;
    padding: 28px 24px 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
    direction: rtl;
    animation: doctorPopupSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto; /* خود باکس قابل کلیک است */
}

@keyframes doctorPopupSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.doctor-popup-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.doctor-popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.doctor-popup-brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(59,130,246,0.3);
}

.doctor-popup-title-group {
    display: flex;
    flex-direction: column;
}

.doctor-popup-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.doctor-popup-brand-tag {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
}

.doctor-popup-teaser {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 14px 16px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.04);
}

.doctor-popup-teaser p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}

.doctor-popup-highlight{
    color:#ff8c2a;
    font-weight:700;
    position:relative;
    display:inline-block;
    animation:pulseGlow 2.8s ease-in-out infinite;
}

@keyframes pulseGlow{
    0%,100%{
        transform:scale(1);
        text-shadow:
            0 0 0 rgba(255,140,42,0);
    }

    50%{
        transform:scale(1.02);
        text-shadow:
            0 0 8px rgba(255,140,42,.5),
            0 0 16px rgba(255,180,70,.35),
            0 0 24px rgba(255,220,120,.2);
    }
}
.doctor-popup-close{
    color: white;
  direction: ltr;
  cursor: grab;
  font-size: x-large;
}

.doctor-popup-glow-line {
    display: block;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    margin-top: 10px;
}

.doctor-popup-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doctor-popup-features li {
    font-size: 13px;
    color: #e2e8f0;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.doctor-popup-features li::before {
    content: "✦";
    color: #60a5fa;
    font-size: 12px;
    flex-shrink: 0;
}

.doctor-popup-features .feature-dots-item {
    flex-wrap: wrap;
    background: rgba(59,130,246,0.04) !important;
    border-color: rgba(59,130,246,0.12) !important;
}

.doctor-popup-word-group {
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 500;
    color: #ffffff;
    flex-wrap: wrap;
}

.doctor-popup-dot-between {
    display: inline-flex;
    align-items: center;
    margin: 0 2px;
}

.doctor-popup-color-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 0 2px;
}
.doctor-popup-color-dot.blue { background: #60a5fa; }
.doctor-popup-color-dot.green { background: #34d399; }
.doctor-popup-color-dot.purple { background: #a78bfa; }

.doctor-popup-dash {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 6px 0 2px 0;
}
.doctor-popup-dash span {
    display: block;
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
}
.doctor-popup-dash span:nth-child(2) {
    width: 40px;
    background: rgba(255,255,255,0.15);
}

.doctor-popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.04);
    flex-wrap: wrap;
    gap: 8px;
}

.doctor-popup-footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #94a3b8;
}

.doctor-popup-dot-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: doctorPopupPulse 1.5s ease-in-out infinite;
}

@keyframes doctorPopupPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.doctor-popup-footer-right {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    cursor: default; /* غیرفعال */
    box-shadow: 0 4px 16px rgba(16,185,129,0.25);
    white-space: nowrap;
    border: none;
    font-family: inherit;
    opacity: 0.7;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 480px) {
    .doctor-popup-box {
        padding: 20px 16px 20px;
        border-radius: 22px;
    }
    .doctor-popup-brand-name {
        font-size: 16px;
    }
    .doctor-popup-teaser p {
        font-size: 13px;
    }
    .doctor-popup-features li {
        font-size: 12px;
        padding: 6px 10px;
    }
    .doctor-popup-footer-right {
        font-size: 11px;
        padding: 5px 14px;
    }
    .doctor-popup-brand-badge {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}

@media (max-width: 380px) {
    .doctor-popup-box {
        padding: 16px 12px 16px;
        border-radius: 18px;
    }
    .doctor-popup-brand-name {
        font-size: 14px;
    }
    .doctor-popup-teaser p {
        font-size: 12px;
    }
    .doctor-popup-features li {
        font-size: 11px;
        padding: 5px 8px;
    }
    .doctor-popup-footer-right {
        font-size: 10px;
        padding: 4px 12px;
    }
    .doctor-popup-brand-badge {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}