/* Avatar () */
.object-fit-cover {
    object-fit: cover;
}

.avatar-usuario {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.lh-condensed h6 {
    line-height: 1.2;
}
/* END Avatar () */

/*Contact*/
  .contact-bubble {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.35rem 0.6rem;
      border-radius: 50rem;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border: 1px solid #ced4da;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      cursor: pointer;
      transition: all 0.2s ease-in-out;
  }
  .contact-bubble:hover {
      background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transform: translateY(-1px);
  }
  .contact-bubble i {
      transition: transform 0.2s ease;
  }
  .contact-bubble:hover i {
      transform: scale(1.15);
  }
  .contact-popover-content {
      padding: 0.25rem 0;
  }
  .contact-popover-item {
      display: flex;
      align-items: center;
      padding: 0.4rem 0.6rem;
      margin-bottom: 0.25rem;
      border-radius: 0.25rem;
      color: #495057 !important;
      text-decoration: none;
      transition: background 0.15s ease, color 0.15s ease;
  }
  .contact-popover-item:hover {
      background-color: #f1f3f5;
      color: #007bff !important;
      text-decoration: none;
  }
  .contact-popover-item i {
      width: 1.5rem;
      margin-right: 0.5rem;
      text-align: center;
  }
  .contact-popover-divider {
      height: 1px;
      background-color: #e9ecef;
      margin: 0.4rem 0;
  }
/* END Contact */
