.modal {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgb(128 128 128 / 60%);
    z-index: 600;
    opacity: 0;
    transition: 250ms opacity ease;
}

.modal-body {
    display: none;
    position: fixed;
    top: 45vh;
    left: 50%;
    transform: translate(-50%, -47%);
    margin: 1% auto 0px auto;
    width: 800px;
    max-width: calc(100vw - 10%);
    min-width: 300px;
    min-height: 300px;
    z-index: 601;
    background-color: white;
    flex-direction: column;
    opacity: 0;
    transition: 250ms opacity ease, 500ms width ease;
    border-radius: 5px;
    max-height: 100vh;
    overflow: auto;
}

.modal-title {
    display: flex;
    padding: 10px;
    justify-content: space-between;
    background-color: rgb(128 128 128 / 60%);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    align-items: flex-end;
}

.modal-title button {
    border-style: none;
    background-color: transparent;
    opacity: 0.7;
    cursor: pointer;
}

.modal-title button:hover {
    opacity: 1;
    border-style: none;
    background-color: transparent;
}

.modal-content {
    padding: 10px;
}

.modal-title-text {
    font-size: x-large;
    font-weight: 450;
}

.loading-model-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes blink-border {
    0% {
      border-color: transparent;
    }
    50% {
      border-color: rgb(128 128 128 / 60%);
    }
    100% {
      border-color: transparent;
    }
  }
  
  .blink {
    border: 2px solid transparent; 
    animation: blink-border 1s ease-in-out 3;
  }