/**
 * Public Profile Modal - Appears in the CENTER of the page, ABOVE EVERYTHING
 */

/* Modal z-index (above header, above everything) */
#publicProfileModal {
  z-index: 999999 !important;
}

#publicProfileModal .modal-dialog {
  z-index: 1000000 !important;
  margin: 1.75rem auto !important;
}

/* DESKTOP ONLY: Make modal BIGGER and properly CENTERED */
@media (min-width: 768px) {
  #publicProfileModal .modal-dialog {
    max-width: 600px !important;
    margin: 3rem auto !important;
  }
  
  #publicProfileModal .modal-dialog.modal-lg {
    max-width: 700px !important;
  }
}

/* Clickable username styling */
.clickable-username {
  cursor: pointer !important;
  color: #16f1d3 !important;
  transition: all 0.2s ease;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: rgba(22, 241, 211, 0.4);
}

.clickable-username:hover {
  color: #ffffff !important;
  text-decoration-style: solid;
  text-decoration-color: #16f1d3;
  text-shadow: 0 0 8px rgba(22, 241, 211, 0.6);
}

/* Loading state */
.public-profile-loading {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
