 .profile-image-container:hover .overlay {
        opacity: 1 !important;
    }

    .divider {
        height: 1px;
        background: linear-gradient(90deg, rgba(108, 117, 125, 0.1) 0%, rgba(108, 117, 125, 0.3) 50%, rgba(108, 117, 125, 0.1) 100%);
    }

    .profile-image-container {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }

    .profile-user-img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        transition: filter 0.3s;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s;
        border-radius: 50%;
    }

    .profile-image-container:hover .overlay {
        opacity: 1;
    }

    .profile-image-container:hover .profile-user-img {
        filter: brightness(0.8);
    }

    .overlay i {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .preloader-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        /* Fondo semitransparente */
        z-index: 9999;
        /* Asegura que esté por encima de todo */
        display: flex;
        align-items: center;
        justify-content: center;
    }