#smoke-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.smoke {
  position: absolute;
  width: 50px;
  height: 50px;
  background-size: cover;
  animation: smoke-fade 1s ease-out forwards;
  opacity: 0.8;
  filter: blur(0px);
  pointer-events: none;
}

@keyframes smoke-fade {
  0% {
    opacity: 1;
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(50px, 100px) scale(2);
  }
  100% {
    opacity: 0;
    transform: translate(100px, 200px) scale(3);
  }
}

.status-indicator {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.delete-indicator {
    display: inline-flex; /* Flexbox a középre igazításhoz */
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: red; /* Piros háttér */
    color: white; /* Szöveg színe */
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
}

/* Hover effekt */
.delete-indicator:hover {
    background-color: darkred; /* Sötétebb piros hover állapotban */
    transform: scale(1.2); /* Nagyobb lesz hoverre */
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Az alapállapotban a container rejtve van */
.container {
    opacity: 0;
    transform: translateY(-50px);
}

/* Ha az animációs osztályt megkapja, elindul */
.container.animate {
    animation: slideIn 0.6s ease-out forwards;
}




