.modal-hours {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0);
  backdrop-filter: blur(0px);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.modal-hours.show {
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content-hours {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;

  transform: translateY(-50px) scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;

  max-height: 90vh;
  overflow-y: auto;
}

.modal-hours.show .modal-content-hours {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.close-modal:hover {
  color: #ef4444;
}

.modal-header {
  text-align: center;
  color: var(--clr-blue-1, #1e40af);
  margin-bottom: 20px;
}

.modal-header i {
  font-size: 2.5rem;
  color: var(--clr-yellow-1, #facc15);
  margin-bottom: 10px;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.schedule-list,
.collection-stats {
  margin-top: 15px;
}

.day-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.day-row:last-child {
  border-bottom: none;
}

.day-name {
  font-weight: 600;
  color: #334155;
}

.day-time {
  text-align: right;
  color: #1e293b;
  font-size: 0.95rem;
  line-height: 1.4;
}

.closed .day-time {
  color: #ef4444;
  font-weight: bold;
}

.collection-stats p {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  margin: 0;
  color: #334155;
}

.room-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.room-item {
  display: flex;
  padding: 15px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid var(--clr-blue-1, #1e40af);
}

.room-flex {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.room-icon {
  font-size: 1.2rem;
  color: var(--clr-blue-1, #1e40af);
  background: #dbeafe;
  padding: 10px;
  border-radius: 10px;
}

.room-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
}

.room-info p,
.room-info small {
  margin: 0;
  color: #475569;
}

.room-tag {
  display: inline-block;
  margin-top: 8px;
  background-color: #e2e8f0;
  color: #475569;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.modal-footer-note {
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #cbd5e1;
}

.search-suggestions-list {
  margin-top: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.suggestion-item {
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  color: #273374;
  border-bottom: 1px solid #f1f5f9;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: #facc15;
  color: #0f172a;
  transform: translateX(5px);
}

.suggestion-item i {
  width: 20px;
  text-align: center;
  opacity: 0.7;
}
