html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.tab-links {
  border-radius: 5px;
  transition: all 0.3s;
}

.tab-links:hover {
  cursor: pointer;
  box-shadow: 0 0 10px rgba(124, 124, 124, 0.5);
}

.tab-links .active {
  box-shadow: 0 0 10px rgba(105, 105, 105, 0.5) !important;
}

/* Change the scrollbar style to minimal in all browsers */
::-webkit-scrollbar {
  width: 10px;
}



::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.avatar {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
}

.avatar-image {
  width: 50px; 
  height: 50px; 
  object-fit: cover; 
  border-radius: 50%; 
  border: none; 
  display: block; 
}


#preview-content p {
  margin: 0;
  padding: 0;
}
#preview-attachments {
  position: relative;
}
.image-grid-item, .video-grid-item, .document-grid-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.image-grid-item img, .video-grid-item video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.document-grid-item {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.document-grid-item a {
  text-decoration: none;
  color: #007bff;
}
.document-grid-item a:hover {
  text-decoration: underline;
}

.form-control {
  
  padding: .25rem .75rem !important; 
}

.btn-close {
  color: #7b7b7b !important;
}