.password-strength {
    height: 4px;
    background-color: var(--bg-tertiary);
    border-radius: 2px;
    margin-top: var(--space-xs);
    overflow: hidden;
}

#changePasswordBtn {
    display: block;
    margin: 0 auto;
}

.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;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.logout-wrapper {
    width: 50%;
}

.danger-zone h3 {
    color: var(--error-color);
    margin-bottom: var(--space-md);
}

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.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;
}