.error-message {
  color: #dc3545;
  /* Bootstrap's danger color */
  padding-top: 0.25rem;
  /* Adjusts space between input and error message */
  font-size: 0.875rem;
  /* Slightly smaller than the default font size */
  line-height: 1.2;
  /* Adjust line height for better readability */
}


.header-shadow {
  /* box-shadow: 0 4px 4px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
  /* box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em; */
  box-shadow: rgba(17, 17, 26, 0.068) 0px 1px 2px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);  */
  z-index: 1001;
  /* Ensure it's above other elements */
}


.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  /* Dimmed background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  cursor: pointer;
  /* Indicates that the overlay is clickable */
}

.fullscreen-overlay img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: contain;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 5px;
}

.close-button:hover {
  color: #ff0000;
  /* Change color on hover for better UX */
}
