.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}


.modal-content {
  background: #1e1e2f;
  padding: 20px;
  width: 100%;
  max-width: 1250px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.modal-content > textarea{
    resize: none;         /* запретить изменение размера */     
    width:100% ;
    height: 500px;
    box-sizing: border-box;
}

.modal-content > input{
    
    min-width: 400px;
    max-width: 400px;
    height: 25px;
    display: block;
    margin: 0 auto;
    
}

#save-note{
  min-width: 200px;
  height: 50px;
  background-color: #3b82f6;
}

#exit {
    position: absolute;
    top: 10px;
    right: 20px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 15px;
    background-color: #ef4444;
    
}