/* ---- VEO Status Card + Loader + Reveal ---- */
.ws-veo-card{
  position: relative;
  width: 100%;
  background: #f2f3f5;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.06);
}

.ws-veo-splash{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: .02em;
  background: linear-gradient(180deg, #f7f8fa 0%, #f2f3f5 100%);
  z-index: 1;
}

/* Kör alakú „satisfying” loader */
.ws-veo-loader{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}

.ws-veo-loader .loader-ring{
  width: 140px; height: 140px;
  filter: drop-shadow(0 6px 18px rgba(17,24,39,.08));
}

.ws-veo-loader .ring-bg{
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 10;
}

.ws-veo-loader .ring-fg{
  fill: none;
  stroke: conic-gradient(from 0deg, #9ca3af, #6b7280, #9ca3af);
  /* fallback stroke (safari): */
  stroke: #6b7280;
  stroke-linecap: round;
  stroke-width: 10;
  stroke-dasharray: 326;           /* 2πr ~ 2 * 3.1416 * 52 ≈ 326 */
  stroke-dashoffset: 260;
  transform-origin: 60px 60px;
  animation: ws-veo-dash 1800ms ease-in-out infinite, ws-veo-rot 2200ms linear infinite;
}

/* MM:SS számláló a kör közepén */
.ws-veo-loader .loader-timer{
  position: absolute;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 1.1rem;
  color: #4b5563;
  letter-spacing: .02em;
}

@keyframes ws-veo-rot {
  to { transform: rotate(360deg); }
}
@keyframes ws-veo-dash {
  0%   { stroke-dashoffset: 260; stroke-dasharray: 40 286; }
  50%  { stroke-dashoffset: 80;  stroke-dasharray: 180 146; }
  100% { stroke-dashoffset: 260; stroke-dasharray: 40 286; }
}

/* Videó „legenerálódó” megjelenése */
.ws-veo-card video.video-appear{
  animation: veo-reveal 600ms cubic-bezier(.2,.8,.2,1) both, veo-pop 900ms cubic-bezier(.22,.61,.36,1) both;
}

@keyframes veo-reveal {
  0%   { opacity: 0; filter: blur(10px); transform: scale(.985); }
  100% { opacity: 1; filter: blur(0);     transform: scale(1); }
}
@keyframes veo-pop {
  0%   { box-shadow: 0 0 0 rgba(0,0,0,0); }
  100% { box-shadow: 0 8px 28px rgba(17,24,39,.18); }
}

/* Fénycsík wipe overlay a kész érzethez */
.ws-veo-wipe{
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.7) 30%, rgba(255,255,255,0) 60%);
  mix-blend-mode: screen;
  animation: ws-veo-wipe 900ms ease-out forwards;
  pointer-events: none;
  z-index: 3;
}
@keyframes ws-veo-wipe {
  0%   { transform: translateX(-120%); opacity: .0; }
  10%  { opacity: .35; }
  100% { transform: translateX(120%);  opacity: 0; }
}


#chat-window-container {
    position: relative;
}

#clear-chat-button {
    display: inline-block; /* Inline-block, hogy a középre igazítás működjön */
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%; /* Kör alakú gomb */
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 10px auto; /* Automatikus margó a középre igazításhoz */
}

#clear-chat-button:hover {
    background-color: #ff1a1a;
}

.clear-icon {
    display: inline-block;
    transition: transform 0.5s ease-in-out;
}

#clear-chat-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 0.5s ease-in-out;
    border-radius: 50%;
}

#clear-chat-button.animate .clear-icon {
    transform: rotate(360deg);
}

#clear-chat-button.animate::before {
    transform: translate(-50%, -50%) rotate(360deg);
}

#chat-window {
    height: 40vh; /* A chatablak magasságának beállítása a viewport magasság 35%-ára */
    overflow-y: scroll; /* Csak a függőleges görgetősáv engedélyezése */
    overflow-x: hidden; /* A vízszintes görgetősáv elrejtése */
    padding: 10px;
    margin-bottom: 10px;
    background-color: transparent; /* Átlátszó háttérszín */
    border: none; /* Nincs körvonal */
    display: flex;
    flex-direction: column;
    margin-top: 40px; /* A gomb helyének biztosítása */
    position: relative; /* Hozzáadva a relatív pozícionálás */
}

/* Webhook chat save */
.bookmarkBtn {
  width: 100px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.349);
  background-color: rgb(12, 12, 12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}

.IconContainer {
  width: 30px;
  height: 30px;
  background: linear-gradient(to bottom, #0070FF, #519EFF);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.3s;
}

.icon {
  border-radius: 1px;
}

.text {
  height: 100%;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
  transition-duration: 0.3s;
  font-size: 1.04em;
}

.bookmarkBtn:hover .IconContainer {
  width: 90px;
  transition-duration: 0.3s;
}

.bookmarkBtn:hover .text {
  transform: translate(10px);
  width: 0;
  font-size: 0;
  transition-duration: 0.3s;
}

.bookmarkBtn:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}

/* Custom scrollbar styles */
#chat-window::-webkit-scrollbar {
    width: 6px; /* Vékonyabb görgetősáv */
}

#chat-window::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#chat-window::-webkit-scrollbar-thumb {
    background: #80bfff; /* Világosabb kék */
    border-radius: 10px;
}

#chat-window::-webkit-scrollbar-thumb:hover {
    background: #66a3ff; /* Világosabb kék */
}




.message-container {
    display: flex;
    margin-bottom: 25px; /* Növeltük a margót, hogy az időbélyeg ne lógjon bele a következő üzenetbe */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message {
    padding: 10px;
    border-radius: 15px;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Nagyobb árnyék hozzáadása */
    position: relative;
}

.message.sent {
    background-color: #0070FF;
    color: white;
    align-self: flex-end;
    margin-left: auto;
    text-align: right;
}

.message.received {
    background-color: transparent;
    color: #0070FF;
    border: 1px solid #0070FF;
    align-self: flex-start;
    margin-right: auto;
    text-align: left;
}

.message.error {
    background-color: #f8d7da;
    align-self: flex-start;
    color: #721c24;
    text-align: left;
}

.timestamp {
    font-size: 0.8em;
    color: #999;
    position: absolute;
    bottom: -20px; /* Módosítva, hogy lejjebb kerüljön */
    right: 10px;
}


/* Chat ablak */

#webhook_chat_input {
    box-sizing: border-box;
    resize: none; /* Ne lehessen manuálisan átméretezni */
    overflow: hidden; /* Rejtse el a görgetősávokat */
}

#char-counter {
    font-size: 14px;
    color: #007bff;
    text-align: right;
    margin-top: 5px;
}

.wave-group .input:focus {
    outline: none;
}

.wave-group {
  position: relative;
}

.wave-group .input {
  font-size: 16px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #515151;
  background: transparent;
}

.wave-group .input:focus {
  outline: none;
}

.wave-group .label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  display: flex;
}

.wave-group .label-char {
  transition: 0.2s ease all;
  transition-delay: calc(var(--index) * .05s);
}

.wave-group .input:focus ~ label .label-char,
.wave-group .input:valid ~ label .label-char {
  transform: translateY(-20px);
  font-size: 14px;
  color: #5264AE;
}

.wave-group .bar {
  position: relative;
  display: block;
  width: 100%;
}

.wave-group .bar:before,.wave-group .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #0070FF;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.wave-group .bar:before {
  left: 50%;
}

.wave-group .bar:after {
  right: 50%;
}

.wave-group .input:focus ~ .bar:before,
.wave-group .input:focus ~ .bar:after {
  width: 50%;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(1px);
    }
    75% {
        transform: translateX(-1px);
    }
}

#webhook_chat_input.shake {
    animation: shake 0.5s;
}

.wave-group .bar.warning:before,
.wave-group .bar.warning:after {
    background: #aa0505;
}

.webhook-chat-button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.webhook-chat-button .icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.webhook-chat-button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.webhook-chat-button:hover .icon {
  transform: translate(4px);
}

.webhook-chat-button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.webhook-chat-button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* Chat */

#send-button {
    width: 100%;
    padding: 12px 15px;
    background-color: #007bff; /* Alapértelmezett kék háttérszín */
    color: white; /* Fehér szöveg */
    border: none;
    border-radius: 8px; /* Lekerekített sarkok */
    font-size: 16px;
    cursor: pointer; /* Mutató mutatja, hogy kattintható */
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Átmenet */
    text-align: center; /* Középre igazított szöveg */
    outline: none; /* Eltávolítja az alapértelmezett outline-t */
}

#send-button:hover {
    background-color: #0056b3; /* Sötétebb kék, amikor az egér fölé viszik */
    box-shadow: 0 0 10px rgba(0, 91, 187, 0.3); /* Kék árnyék */
}

#send-button:active {
    background-color: #004494; /* Még sötétebb kék, amikor megnyomják */
    box-shadow: 0 0 12px rgba(0, 68, 148, 0.4); /* Sötétebb kék árnyék */
}

#send-button.disabled {
    background-color: #cccccc; /* Szürke háttérszín, amikor le van tiltva */
    cursor: not-allowed; /* Mutató mutatja, hogy nem kattintható */
    box-shadow: none; /* Eltávolítja az árnyékot */
}

#send-button.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease-in-out;
}

#send-button.active.animate::before {
    left: 100%;
}

.message.sent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease-in-out;
}

.message.sent.animate::before {
    left: 100%;
}


#user-tokens-container {
    text-align: center;
    font-size: 30px; /* Állítsd be a kívánt betűméretet */
    color: white;
}

#scroll-to-bottom {
    position: absolute; /* Pozicionálás abszolútra */
    bottom: 10px; /* Alsó pozíció beállítása */
    left: 50%; /* Középre igazítva */
    transform: translateX(-50%); /* Középre igazítva */
    padding: 5px;
    background-color: #0070FF;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Z-index növelése a többi elem fölé */
}

#typing-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background-color: #0070FF;
    border-radius: 50%;
    display: inline-block;
    animation: dot-blink 1s infinite;
}

@keyframes dot-blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.message.sent.slide-out {
    animation: slideOutRight 0.5s forwards;
}

.message.received.slide-out {
    animation: slideOutLeft 0.5s forwards;
}


/* PostForge */


.ws-chat-input,
.ws-chat-sub-input {
    width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
    background-color: #fff; /* Fehér háttérszín */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.ws-chat-sub-input.color-picker {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  outline: none;
  background-color: #0070ff; /* Alapértelmezett szín */
}

.ws-chat-input:focus,
.ws-chat-sub-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}
textarea.ws-chat-sub-input {
    resize: vertical; /* Engedélyezi a függőleges méretezést */
}


.ws-chat-dropdown:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
    transform: scale(101%); /* Kicsi nagyítás animáció */
}

.ws-chat-dropdown option {
    padding: 10px;
}

.ws-input-container,
.ws-sub-input-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.char-counter {
    font-size: 16px;
    color: #0070FF;
    align-self: flex-end;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.char-counter.visible {
    opacity: 1;
}

/* Dropdown stílus */
.ws-chat-dropdown {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff; /* Fehér háttérszín */
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    appearance: none; /* Az alapértelmezett stílus eltávolítása */
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23333" d="M2 0L0 2h4zM2 5L0 3h4z"/></svg>'); /* Egyéni nyíl ikon */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px 10px;
    padding-right: 30px; /* Extra hely a szöveg és a nyíl között */
}


/* Gomb */

.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  width: 100%;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button.enabled {
  cursor: pointer;
}

.button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  box-shadow: none;
  border-color: #ddd;
  color: #888;
}

.button.enabled:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button.enabled:hover .icon {
  transform: translate(4px);
}

.button.enabled:hover::before {
  animation: shine 2s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}


/* Kapcsoló */
.switch {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 34px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3C3C3C;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0E6EB8;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(85px);
    -ms-transform: translateX(85px);
    transform: translateX(85px);
}

.slider:after {
    content: attr(data-inactive-text);
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: 10px;
    font-family: Verdana, sans-serif;
}

input:checked + .slider:after {
    content: attr(data-active-text);
}


/* Új stílus a ws_chat_response elemhez */
.ws-chat-response {
  padding: 10px;
  background-color: transparent; /* Átlátszó háttérszín */
  border: none; /* Nincs körvonal */
  font-size: 16px;
  color: #333; /* Szöveg színe */
  margin-bottom: 10px;
  white-space: pre-wrap; /* Sorvégeket megtart */
}

.ws-chat-response img {
  max-width: 100%; 
  height: auto;
}


@keyframes shake {
  0%, 100% {
      transform: translateX(0);
  }
  25% {
      transform: translateX(-4px);
  }
  50% {
      transform: translateX(4px);
  }
  75% {
      transform: translateX(-4px);
  }
}

.input-warning {
  animation: shake 0.5s;
  border-color: #ff0000; /* Piros szín a figyelmeztetéshez */
  background-color: #ffe6e6; /* Enyhe piros háttérszín */
}

.input-warning::placeholder {
  color: #ff0000; /* Piros placeholder szöveg */
}



.custum-file-upload {
  height: 200px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  border: 2px dashed #cacaca;
  background-color: rgba(255, 255, 255, 1);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0px 48px 35px -48px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.custum-file-upload:hover {
  border-color: #007bff;
  background-color: rgba(230, 240, 255, 0.5);
}

.custum-file-upload:active {
  background-color: rgba(200, 220, 255, 0.7);
}

.custum-file-upload .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custum-file-upload .icon svg {
  height: 80px;
  fill: rgba(75, 85, 99, 1);
  transition: fill 0.3s ease;
}

.custum-file-upload:hover .icon svg {
  fill: #007bff;
}

.custum-file-upload .text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custum-file-upload .text span {
  font-weight: 400;
  color: rgba(75, 85, 99, 1);
  transition: color 0.3s ease;
}

.custum-file-upload:hover .text span {
  color: #007bff;
}

.custum-file-upload input {
  display: none;
}

/* Új osztály, amely a kiválasztott fájl esetén jelenik meg */
.custum-file-upload.file-selected {
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
}

.custum-file-upload.file-selected .text span {
  color: #28a745;
  font-weight: bold;
}

.radio-group {
  display: flex;
  flex-direction: column;
}

.radio-label {
  display: flex;
  align-items: center;
  padding: 0.5em;
  margin-bottom: 0.5em;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: background-color 0.2s, border-color 0.2s;
}

.radio-label:hover {
  background-color: #e6e6e6;
}

.radio-input {
  position: absolute;
  opacity: 0;
}

.radio-input:checked + .radio-label {
  background-color: #bedafe;
  border-color: #0070ff;
}

.radio-input:focus + .radio-label {
  outline: 2px solid #0070ff;
}

.radio-inner-circle {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid #888;
  border-radius: 50%;
  margin-right: 0.5em;
  transition: border-color 0.2s;
  position: relative;
}

.radio-label:hover .radio-inner-circle {
  border-color: #555;
}

.radio-input:checked + .radio-label .radio-inner-circle {
  border-color: #0070ff;
}

.radio-input:checked + .radio-label .radio-inner-circle::after {
  content: '';
  display: block;
  width: 0.5em;
  height: 0.5em;
  background-color: #0070ff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Animáció és számláló igazítása középre */
.ws-loading-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dot-loader {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-bottom: 5px;
  white-space: nowrap; /* Szóközök eltávolítása a pontok közül */
}

.dot-loader .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0070ff;
  opacity: 0.5;
  animation: dot-blink 1.4s infinite both;
}

.dot-loader .dot:nth-child(1) {
  animation-delay: 0s;
}
.dot-loader .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot-loader .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-blink {
  0%, 80%, 100% {
      opacity: 0.3;
  }
  40% {
      opacity: 1;
  }
}

.countdown-timer {
  font-size: 14px;
  color: #333;
  text-align: center;
}


