/* Стили для затемненного фона */
body{
  font-family: Inter ,sans-serif;
}
.modal#notifications-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #061D19;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    display: none; /* Модалка скрыта по умолчанию */
  }
  
  /* Стиль модального содержимого */
  .modal#notifications-modal .modal-content {
    background-color: #061D19;
    color: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
  }
  
  .modal#notifications-modal .modal-header {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .modal#notifications-modal .modal-body {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .modal#notifications-modal .modal-footer {
    display: flex;
    justify-content: space-between;
  }
  
  .modal#notifications-modal .modal-footer button {
    background-color: #14CBB4;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .modal#notifications-modal .modal-footer button:hover {
    background-color: #00a07e;
  }
  
  .modal#notifications-modal .modal-footer .cancel {
    background-color: #d63031;
  }
  
  .modal#notifications-modal .modal-footer .cancel:hover {
    background-color: #c0392b;
  }
  
  .modal#notifications-modal .modal-notification {
    margin-bottom: 15px;
    background-color: #1b1f23;
    padding: 10px;
    border-radius: 5px;
  }
  
  .modal#notifications-modal .modal-notification p {
    margin: 5px 0;
  }
  .modal#notifications-modal .close {
    cursor: pointer;
    font-size: 25px;
    text-align: end;
    line-height: 0px;
    position: absolute;
    right: 20px;
    top: 30px;
  }