.announcement-bar {
  background-color: #8D1436;
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.8rem, 2.5vw, 1.2rem);
  line-height: 1.4;
  gap: 10px;
}

.dataTables_wrapper .dt-buttons {
  float: none;  
  text-align: right;
}

.dt-button.csvButton {
  background-color: #4A59E8;
  padding: 5px 15px;
  border-color: #4A59E8;
  color: white;
  border-radius: 10px;
  border: solid;
}
  
.dt-button.excelButton {
  background-color: #1B8A0A;
  padding: 5px 15px;
  border-color: #1B8A0A;
  color: white;
  border-radius: 10px;
  border: solid;
}
  
.dt-button.pdfButton {
  background-color: #FF1D1D;
  padding: 5px 15px;
  border-color: #FF1D1D;
  color: white;
  border-radius: 10px;
  border: solid;
}

.overlay-container,
.overlay-container * {
  box-sizing: border-box;
}

.overlay-container {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.overlay-container img {
  max-width: 100%;
}

.overlay-container .overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
  transition: all 0.4s ease-in-out 0s;
}

.overlay-container:hover .overlay,
.overlay-container.active .overlay {
  opacity: 1;
}

.overlay-container .hover-text {
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
}

.overlay-container .hover-text_mobile {
  font-size: 15px;
  border-top: 1px solid rgba(179, 179, 179, 0.7);
  margin-top: 5px;
  padding-top: 2px;
  display: none;
}

.overlay-container.active .hover-text_mobile {
  display: block;
}

@font-face {
  font-family: 'Avenir-Roman';
  src: url('../fonts/Avenir-Roman.ttf') format('truetype');
}  

@font-face {
  font-family: 'Optima';
  src: url('../fonts/Optima.otf') format('opentype');
}  

.dorm-header {
  font-family: 'Optima', sans-serif;
  font-size: 2em;
}

.table-flex {
  width: 100% !important; 
  overflow: auto;
}

#mainbanner {
  position: relative;
  height: 60vh !important;
  width: 82vw !important;
}

.btn-group button {
  background-color: white;
  border: 1px solid black;
  color: black;
  padding: 10px 24px;
  cursor: pointer;
  width: 85vw;
  display: block;
  text-align: left;
}
  
.btn-group button:not(:last-child) {
  border-bottom: none;
}
  
.btn-group button:hover {
  background-color: #8D1436;
  color: white;
}

.button-dorm {
  border: 2px solid black;
  background-color: white;
  color: black;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
}

.rates {
  border-color: #04AA6D;
  color: green;
}

.rates:hover {
  background-color: #04AA6D;
  color: white;
}

.pictures {
  border-color: #2196F3;
  color: dodgerblue;
}
  
.pictures:hover {
  background: #2196F3;
  color: white;
}

.text-bold {
  font-weight: bold;
  font-size: 0.9em;
}

.btn-bridge {
  background-color: gray;
}

#bridge-submit-btn {
  margin-bottom: 30px;
  background-color: #8D1436;
}

.divider {
  border-top: 3px dotted #bbb;
}

/* Header Layout */
.dorm-header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #7b1113;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.dorm-header-layout h6 {
  margin: 0;
}

/* List & Spacing Layout */
.dorm-collection-layout {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dorm-item-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: black;
}

/* Empty State Layout */
.dorm-empty-layout {
  padding: 24px;
  text-align: center;
  border: 1px dashed #ccc;
  border-radius: 4px;
}