#confirm-window {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(12,16,34,0.8);
    z-index: 10000;
    display: none;
}

#confirm-window>div {
    background-color: var(--background-color2);
    font-size: var(--font-size4);
    width: 40%;
    height: 15%;
    border-radius: 10px;
    padding: 5px;
    position: absolute;
    top: 1%;
    left: calc(50% - 20%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 10px;
    box-shadow: 2px 0px 2px 0px rgba(0, 255, 170, 0.3), 0px 2px 2px 0px rgba(0, 177, 255, 0.3), -2px 0px 2px 0px rgba(88, 5, 205, 0.7), 0px -2px 2px 1px rgba(0, 53, 113, 0.7);
    -webkit-animation: zoom-from-top 0.5s ease;
    animation: zoom-from-top 0.5s ease;
}

#confirm-window>div div:first-child {
    color: var(--font-color1);
}

.confirm-button-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

#confirm-window button {
    font-size: var(--font-size4) !important;
    width: 20%;
    min-height: 30px;
    height: 100%
}

#confirm-action {
    color: var(--font-color2) !important;
    background-color: var(--border-color2)
}
#cancel-action {
    color: var(--font-color3) !important
}

@keyframes zoom-from-top
{
  0% {
    transform: scale(0);
    opacity: 0;
    bottom: 100%;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    top: 1%;
  }
}
