.genua-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.genua-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  border-top: 5px solid #32d7f5;
  z-index: 1030;
  width: 90%;
  max-width: 1000px;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  
}

.genua-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.genua-modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.genua-modal-title .modal-title-preview {
  font-weight: bold; 
  font-size: 24px;
}

.genua-modal-title .modal-attachmentFilename{
  font-style: italic;
  font-size: 20px;
}

.modal-attachmentFilename{
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 20px;
}

.genua-modal-title-fileForDownload{
  font-weight: bold; 
  font-size: 24px;
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: xx-large;
  cursor: pointer;
}

#modalBodyContent img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
  padding: 5px;
}

.genua-modal-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.genua-modal-buttons a{
text-decoration: none;
}

/* Search Menu */

#search {
  display: flex;
  align-items: center;
}

#search span.glyphicon {
  margin-right: 5px;
  font-size: 75%;
  margin-top: 2px;
}

#search span.glyphicon:hover {
  text-decoration: none !important;
}

/* Invitation Modal Style*/

.invitation-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.invitation-modal-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  z-index: 1001;
  width: 40%;
  height: 30%;
  max-width: 850px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}