.quill-editor {
  height: 200px;
  height: fit-content;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

* {
  /* transition: all 1s linear; */
}


/* Alert */
.alert-window-modal {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.05);
  opacity: 0;
  transition: all 0.5s linear;

}

.alert-window-modal.active {
  transform: scale(1);
  ;
  opacity: 1;
}

.alert-window-modal .main-modal {
  width: 350px;
  height: fit-content;
  padding: 20px 30px;
  background-color: white;
  max-width: 90%;
  border-radius: 10px;
  display: none;
}

.alert-window-modal .main-modal.active {
  display: block;
  animation: pop-in-out 0.5s
}

.alert-window-modal .header {
  font-size: 25px;
  font-weight: bolder;
  margin-bottom: 15px;

}

.alert-window-modal .content {
  font-size: 17px;
  line-height: 25px;
}.alert-window-modal .content a{
  color:royalblue;
  /* text-decoration: underline; */
}

.alert-window-modal .btn-container {
  width: fit-content;
  margin: auto;
  margin-top: 10px;
}

.alert-window-modal button {
  background-color: royalblue;
  color: white;
  border-radius: 7px;
  padding: 7px 35px;
  border: 2px solid royalblue;
  outline: none;
  font-size: 18px;
  cursor: pointer;
}

img {
  width: 100%;
}


@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pop-in-out {
  0% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(0.7);
  }

  100% {
    transform: scale(1);
  }
}



td select{
      width: fit-content;
    }
     button:disabled{
      opacity: 0.6;
      cursor:not-allowed!important;
    }