/* ============================================
   5) LOGOVACÍ OKNO
============================================ */
.log-modal {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center; align-items: center;
  z-index: 2000;
}

.log-content {
  width: 90%; max-width: 500px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

#logOutput {
  max-height: 300px;
  overflow-y: auto;
  background: #111;
  color: #0f0;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
}

.log-header {
  display: flex; justify-content: space-between;
  margin-bottom: 8px;
}

#logCloseBtn {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

/* ============================================
   6) MODERNÍ TOAST NOTIFIKACE
=============================================== */

.toast-info {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 20px;
  background: rgba(30, 30, 30, 0.85);

  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;

  display: flex;
  align-items: center;
  gap: 10px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 4px 18px rgba(0,0,0,0.22);

  opacity: 0;
  pointer-events: none;
  z-index: 999999;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* ikona vlevo */
.toast-info::before {
  content: "✔";
  font-size: 16px;
  opacity: 0.9;
}

/* animace zespodu */
.toast-info.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
