﻿#cometchat__widget {
  height: auto !important;
}

body {
  position: static !important;
}

.custom-marker {
  width: 60px;
  height: 60px;
  border: 2px solid #7cafff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  background-color: white;
  position: relative;
}

  .custom-marker img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .custom-marker::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top-color: #4285f4;
  }
