/* Základné nastavenia */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

/* Navigačné menu */
nav {
    background-color: #1e1e1e;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul.menu li {
    position: relative;
}

nav ul.menu > li > a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

nav ul.menu > li > a:hover {
    background-color: #333;
    color: #bb86fc;
}

/* Dropdown menu */
nav ul.menu li.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c2c2c;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border-radius: 4px;
    z-index: 1000;
}

.dropdown-content li {
    width: 200px;
}

.dropdown-content li a {
    padding: 10px 15px;
    color: #e0e0e0;
    text-decoration: none;
    display: block;
}

.dropdown-content li a:hover {
    background-color: #333;
    color: #bb86fc;
}

/* Sekcia prihlásenia a registrácie */
.nav-login {
    display: flex;
    align-items: center;
}

.nav-login button,
.nav-login a {
    background-color: #bb86fc;
    color: #121212;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.nav-login button:hover,
.nav-login a:hover {
    background-color: #9f6fed;
}

.user-name {
    margin-right: 10px;
}

/* Kontajnery pre obsah stránky */
.container {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* Boxy formulárov (login, registrácia) */
.form-box {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    width: 250px;
    z-index: 1000;
}

.form-box input[type="text"],
.form-box input[type="password"],
.form-box input[type="email"],
.form-box select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #121212;
    border: 1px solid #444;￼ Iba posledných 10 kľúčov ￼
Všetky kategórie
 ￼
    color: #e0e0e0;
    box-sizing: border-box;
}

.form-box input[type="submit"],
.form-box button {
    width: 100%;
    padding: 8px;
    background-color: #bb86fc;
    color: #121212;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.form-box input[type="submit"]:hover,
.form-box button:hover {
    background-color: #9f6fed;
}

.form-box .form-links {
    text-align: center;
    font-size: 14px;
}

.form-box .form-links a {
    color: #bb86fc;
    text-decoration: none;
}

.form-box .form-links a:hover {
    text-decoration: underline;
}

/* Chybové a úspešné správy */
.error, .error-message {
    color: #fff;
    background-color: #e53e3e;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
}

.success, .success-message {
    color: #fff;
    background-color: #03a64a;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
}

/* Trieda na skrývanie prvkov */
.hidden {
    display: none;
}

/* ───────────── Modál (tmavé okno uprostred obrazovky) ───────────── */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.hidden { display: none; }
.modal .box {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  max-height: 80%;
  overflow-y: auto;
  width: 320px;
  color: #e0e0e0;
}
.modal .box ul { list-style: none; padding: 0; margin: 0; }
.modal .box li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #333;
}
.modal .box li img.thumb { height: 24px; margin-right: 8px; border-radius: 3px; }

.thumb-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  object-fit: cover;
  border-radius: 2px;
}
.thumb { height:20px;margin-right:6px;vertical-align:middle; }

/* tu pridajte: */
.small-flag {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  object-fit: contain;
  cursor: pointer;
}

.flag-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;      /* miesto “cover” */
  margin-right: 8px;
  vertical-align: middle;
}


