﻿.pp-avatar-option {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: .2s;
}

    .pp-avatar-option:hover {
        transform: scale(1.1);
        border-color: #007bff;
    }

.pp-avatar-option-wrapper {
    padding: 4px;
    border-radius: 50%;
    transition: .2s;
}

    .pp-avatar-option-wrapper.pp-avatar-option-selected {
        border: 3px solid #0d6efd;
        transform: scale(1.1);
    }

#avatarSuccessToast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s;
    z-index: 5000;
}

    #avatarSuccessToast.show {
        opacity: 1;
        transform: translateY(0);
    }


#avatarPreview {
    transition: transform 0.3s ease;
}

.avatar-bounce {
    transform: scale(1.15);
}
