:root{
    --actions-bottom: 0;
}

.password-strength {
    height: 4px;
    background-color: var(--bg-tertiary);
    border-radius: 2px;
    margin-top: var(--space-xs);
    overflow: hidden;
    width: 55%;
}

#changeInfoBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: var(--space-lg);
    bottom: var(--space-md);
    z-index: 1;
    margin-bottom: var(--space-md);
    height: 50px;

    background-color: var(--bg-nonenennary);
    box-shadow: 1px 4px 4px 0 #FFFFFF40;
    color: white;
}
#changeInfoBtn:hover{
    opacity: 0.8;
}

#changePasswordBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: var(--space-lg);
    bottom: var(--space-md);
    z-index: 1;
    margin-bottom: var(--space-md);
    height: 50px;

    background-color: var(--bg-nonenennary);
    box-shadow: 1px 4px 4px 0 #FFFFFF40;
    color: white;
}
#changePasswordBtn:hover{
    opacity: 0.8;
}

#subscriptionActions{
    display: flex;
    flex-direction: column;
    position: absolute;
    right: var(--space-lg);
    bottom: var(--actions-bottom, 0);
    z-index: 1;
    gap: var(--space-lg);

    align-items: center;
    justify-content: flex-end;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-weak {
    background-color: var(--error-color);
    width: 33%;
}

.strength-medium {
    background-color: var(--warning-color);
    width: 66%;
}

.strength-strong {
    background-color: var(--success-color);
    width: 100%;
}

.danger-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

.logout-wrapper {
    width: 50%;
}

.danger-zone h3 {
    color: var(--error-color);
    margin-bottom: var(--space-md);
    text-align: center;
}

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
}

.notification {
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification.error {
    background-color: var(--error-color);
    color: white;
}

.notification.success {
    background-color: var(--success-color);
    color: white;
}

.notification.info {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
}

.modal-body p {
    font-size: 18px;
}

#deleteAccountBtnText{
    font-weight: 600;
    font-size: var(--font-size-lg);
    line-height: 1.4;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;

    color: var(--bg-nonenennary);
}

#logoutBtnText{
    font-weight: 600;
    font-size: var(--font-size-lg);
    line-height: 1.4;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;

    color: rgba(214, 106, 109, 1);
}

@media (max-width: 600px) {
    #changePasswordBtn span{
        font-size: 16px;
    }

    #changeInfoBtn span{
        font-size: 16px;
    }
}

@media (max-width: 490px) {
    #changePasswordBtn{
        height: 30px;
        width: 131px;
        right: var(--space-md);
    }
    #changePasswordBtn span{
        font-size: 11px;
    }

    #subscriptionActions{
        gap: 3px;
        right: var(--space-md);
    }

    #changeInfoBtn{
        height: 30px;
        width: 131px;
        right: var(--space-md);
    }
    #changeInfoBtn span{
        font-size: 11px;
    }

    #deleteAccountBtnText{
        margin-bottom: 2px;
        font-size: 13px;
    }
    #logoutBtnText{
        margin-bottom: 2px;
        font-size: 13px;
    }
    .danger-btn{
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .danger-btn{
        width: 125px;
    }

    #changePasswordBtn{
        width: 110px;
        padding: var(--space-sm) 0;
    }
    #changePasswordBtn span{
        font-size: 10px;
    }

    #changeInfoBtn{
        width: 110px;
        padding: var(--space-sm) 0;
    }
    #changeInfoBtn span{
        font-size: 10px;
    }
}