/* Password Meter Styles */
.psp-password-meter {
    height: 6px;
    background: #E0E0E0;
    border-radius: 3px;
    overflow: hidden;
}
.psp-password-meter-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}
.psp-password-meter-text {
    font-size: 11px;
    margin-top: 4px;
    color: #999;
}
.psp-password-meter-text.weak { color: #EF4444; }
.psp-password-meter-text.fair { color: #F59E0B; }
.psp-password-meter-text.good { color: #3B82F6; }
.psp-password-meter-text.strong { color: #22C55E; }

/* ============================================
   SUCCESS DRAWER STYLES - Curved Top Design
   ============================================ */

.psp-success-drawer {
    text-align: center;
    overflow: visible !important;
    border-radius: 0;
    background: transparent;
    padding-top: 90px;
    min-height: 380px;
}

/* Curved background shape - more prominent curve */
.psp-success-drawer::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 30px 30px 0 0;
}

.psp-success-drawer .psp-drawer-handle {
    position: relative;
    z-index: 5;
    margin-top: 15%;
}

.psp-success-drawer .psp-drawer-success-content {
    padding: 20px 20px 20px;
    position: relative;
    z-index: 10;
}

/* Success Icon Wrapper - positioned at top center */
.psp-success-drawer .psp-success-icon-wrapper {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

/* Success check image */
.psp-success-drawer .psp-success-check-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Success Text */
.psp-success-drawer-title {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 8px;
}

.psp-success-drawer-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0;
}

/* Confetti decoration image - positioned as background */
.psp-success-drawer .psp-confetti-decor {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}

/* Success Footer */
.psp-success-drawer .psp-success-footer {
    border-top: none;
    padding: 15px 50px 25px;
    padding-bottom: calc(25px + env(safe-area-inset-bottom, 0px));
    background: transparent;
    position: relative;
    z-index: 10;
}

.psp-success-drawer .psp-drawer-btn-continue {
    background: linear-gradient(90deg, #0481C6, #004F79);
    color: #ffffff;
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    width: 70%;
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

.psp-success-drawer .psp-drawer-btn-continue:hover {
    opacity: 0.9;
}

/* ============================================
   SELECT2 NO DOCTOR STATE STYLES
   ============================================ */

.select2-no-doctor-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    text-align: center;
}

.select2-no-doctor-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.select2-no-doctor-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
    margin: 0 0 4px;
}

.select2-no-doctor-subtitle {
    font-size: 13px;
    color: #888;
    margin: 0;
}
