/* Profile Picture */
.profile-pic-wrapper {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.profile-pic-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #282534;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid #3f3a4c;
    transition: all 0.3s ease;
    overflow: hidden;
}

.profile-pic-container:hover {
    border-color: #6c63ff;
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.3);
}

.default-profile-icon {
    font-size: 3rem;
    color: #8d8698;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Additional styling for the icon inside the default-profile-icon container */
.default-profile-icon i {
    font-size: 3rem;
    display: block;
    margin: 0 auto;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(40, 37, 52, 0.8);
    color: #ffffff;
    padding: 0.25rem;
    font-size: 0.75rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-pic-container:hover .overlay-text {
    opacity: 1;
}
