  /* Centering the container */
  .loader-image-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image styling with border-radius 20% */
.loader-image-container .loader-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Spinning Loader */
.loader-loader {
    position: absolute;
    width: 95px;
    height: 95px;
    border: 2px solid transparent;
    border-top: 2px solid #009cff;
    border-right: 2px solid #009cff;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

/* Loader Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}