/* Hlavný kontajner pre zarovnanie */
#social-icons {
  position: relative;
  padding: 10px 0;
  width: 100%;
}

/* Vnútorný rad ikon – všetko v jednom riadku bez scrollu */
#social-icons .social-icon-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(4px, 1vw, 10px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Ľavá časť – Login / Register */
.social-left {
  display: flex;
  flex-direction: row;
  gap: clamp(4px, 1vw, 10px);
  flex: 0 0 auto;
  font-family: 'Cinzel', serif; /* <-- pridané */
}

/* Stred – Farebné tlačidlá */
.social-center {
  display: flex;
  justify-content: center;
  gap: clamp(4px, 1vw, 10px);
  flex: 0 0 auto;
}

/* Pravá časť – sociálne siete */
.social-right {
  display: flex;
  flex-direction: row;
  gap: clamp(4px, 1vw, 10px);
  flex: 0 0 auto;
}

/* Strieborné ohraničujúce čiary okolo farebných tlačidiel */
.divider-silver {
  width: 2px;
  height: 60px;
  background: linear-gradient(
    180deg,
    #d4d4d4 0%,
    #f5f5f5 20%,
    #bfbfbf 50%,
    #f5f5f5 80%,
    #d4d4d4 100%
  ); /* <-- upravené na gradient */
  opacity: 0.9;
  align-self: center;
  flex-shrink: 0;
  border-radius: 1px;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Veľké tlačidlá */
.action-button,
.social-icon-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 45px;
  text-decoration: none;
  text-align: center;
  flex-shrink: 1;
}

.action-button img,
.social-icon-button img {
  width: 100%;
  height: 45px;
  object-fit: contain;
}

/* Text pod tlačidlami */
.action-text {
  display: block;
  color: #FFFFFF;
  font-size: 12px;
  margin-top: 1px;
}

.action-button:hover .action-text {
  color: #007BFF;
}

/* Malé farebné tlačidlá */
.social-small-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  flex-shrink: 1;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.social-small-button img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Hover efekt */
.social-small-button:hover {
  opacity: 0.6;
}

/* Zvýraznenie vybraného tlačidla */
.social-small-button.selected {
  opacity: 0.8;
}