/* Общие стили для оверлея модальных окон */
.modal-overlay,
.modal-report,
.modal-dashboard,
#modal-slot-info {
  display: none;
  font-family: 'TT Hoves Pro Expanded';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d7dee6; 
  z-index: 2000; 
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Стили для содержимого модальных окон */
.modal-content-info,
.modal-content,
.modal-content-report,
.modal-content-dashboard,
.modal-content-slot-info {
  position: relative;
  background: white;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  margin: 20px auto;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto; 
  z-index: 2001;
}
/* .modal-content-info,
.modal-content,
.modal-content-report,
.modal-content-slot-info {
 width: fit-content;
}*/
/* Кнопка закрытия */
.close-modal,
.close-modal-report,
.close-dashboard,
.close-modal-slot-info {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover,
.close-modal-report:hover,
.close-dashboard:hover,
.close-modal-slot-info:hover {
  color: #874FFF;
}
