/* --- Letöltésszámláló blokk --- */

.ep-download-label {
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  border-radius: 12px;
  background: rgba(240,240,250,0.7);
  color: #222;
  padding: 3px 10px;
  margin-bottom: 8px;
  display: block;
  width: 100%;
  box-shadow: 0 1px 6px rgba(120,140,180,0.06);
}

.ep-circle-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.ep-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(150,150,170,0.10);
  margin-bottom: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ep-num {
  font-size: 2.1em;
  font-weight: bold;
  color: #222;
  background: transparent;
  line-height: 1.1;
}
.ep-date {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
  line-height: 1.1;
}
.ep-name {
  font-size: 13px;
  color: #444;
  margin-top: 8px;
  line-height: 1.2;
}

.ep-name-lock {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ep-lock {
  margin-left: 2px;
}


/* --- Sötét téma (példa: body.dark-mode vagy body[data-theme="dark"]) --- */
/* Csak azt írd át, amit a sötét témaváltó plugin használ! */

body.dark-mode .ep-download-label,
body[data-theme="dark"] .ep-download-label {
  background: rgba(40,40,50,0.77);
  color: #fff;
  box-shadow: 0 2px 10px rgba(24,24,40,0.10);
}

body.dark-mode .ep-circle,
body[data-theme="dark"] .ep-circle {
  border: 3px solid #bbb;
  background: transparent;
  box-shadow: 0 2px 10px rgba(24,24,40,0.15);
}
body.dark-mode .ep-num,
body[data-theme="dark"] .ep-num {
  color: #fff;
}
body.dark-mode .ep-date,
body[data-theme="dark"] .ep-date {
  color: #aac;
}
body.dark-mode .ep-name,
body[data-theme="dark"] .ep-name {
  color: #e3e3e3;
}

/* --- Responsive optimalizáció --- */
@media (max-width: 600px) {
  .ep-circle {
    width: 70px;
    height: 70px;
  }
  .ep-download-label {
    font-size: 1em;
    padding: 2px 6px;
  }
  .ep-num {
    font-size: 1.3em;
  }
}

