/* Profile Picture */
.profile_pic {
    max-width: 400px;
    max-height: 400px;
    display: inline-block;
}

/* File Upload */
.file-upload {
    display: none;
}

/* Circular Container for Profile Picture */
.circle-big {
    border-radius: 50%;
    overflow: hidden;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: none; /* Important for centering the image */
    display: flex; /* Use flexbox for centering */
    justify-content: center;
    /*align-items: center;*/
    margin: 10px 0;
}

/* Centered Image */
.circle-big img, .circle img {
    max-width: 100%;
    height: auto;
}

/* Circular Container for Profile Picture */
.circle {
    border-radius: 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: none; /* Important for centering the image */
    display: flex; /* Use flexbox for centering */
    justify-content: center;
}


/* Upload Button */
.upload-button {
    font-size: 1.2em;
    transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effect for Upload Button */
.upload-button:hover {
    color: #999;
}

.avatar-container {
  display: inline-block;
  line-height: 0;
  margin: 0 0 1rem;
  position: relative;
}

.avatar-container img {
  border-radius: 100%;
  display: block;
  object-fit: cover;
  height: 33px;
  width: 33px;
}
.avatar-container.isOnline:after {
content: '\f111';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: var(--success-color);
position: absolute;
top: calc(100% - .5rem);
right: 0;
font-size: 1rem;
display: block;
z-index: 1;
/* position: absolute; */
}
@media only screen and (min-width: 768px) {
  .avatar-container img {
    height: 78px;
    width: 78px;  
  }
 
}