
.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s .2s ease-in-out;
  transition: all .4s .2s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
[data-bs-theme="dark"] .page-loading {
  background-color: #121519;
}
.page-loading.active {
  opacity: 1;
  visibility: visible;
}
.page-loading-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  opacity: 0;
}
.page-loading.active > .page-loading-inner {
  opacity: 1;
}
.page-loading-inner > span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #6f788b;
}
[data-bs-theme="dark"] .page-loading-inner > span {
  color: #fff;
  opacity: .6;
}
.page-spinner {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: .75rem;
  vertical-align: text-bottom;
  background-color: #d7dde2; 
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner .75s linear infinite;
  animation: spinner .75s linear infinite;
}
[data-bs-theme="dark"] .page-spinner {
  background-color: rgba(255,255,255,.25);
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


.salary-locked-box {
  backdrop-filter: blur(6px);
  color: #ccc;
  line-height: 1.2;
 
}
.salary-locked-box:hover {
  cursor: pointer;
}
.salary-locked-box .lock-icon {
  font-size:15px;
  padding: 4px;
  color: #448c74;
  animation: pulseLock 2.5s infinite;
}
@media (max-width: 768px) {
  .salary-locked-box span {
    font-size: 9px;
  }
}
@keyframes pulseLock {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12); opacity: 1; }
}



.players-svg-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
@media (max-width: 576px) {
  .players-svg-wrapper{
      justify-content: center;
      font-size: 11px;
      flex-direction: row;
  }
}

.players-svg-bar {
--hint-color: #448c74;
border-color: rgba(68,140,116,.3) !important;
background-color: rgba(68,140,116,.08);
color: var(--hint-color);
max-width: 100%;
}

.players-svg-bar .text-primary {
color: var(--hint-color) !important;
}

/* Icon hint */
.scroll-hint .scroll-icon {
width: 20px;

}

/* Mobile: icon orizontal + animatie stânga-dreapta */
@media (max-width: 992px) {
.scroll-hint .scroll-icon {
  width: 40px;
  animation: nudgeX 1.6s ease-in-out infinite;
}
}

@media (min-width: 993px) {
.scroll-hint .scroll-icon {
  animation: nudgeY 1.6s ease-in-out infinite;
}
}

@keyframes nudgeX {
0%,100% { transform: translateX(0); }
50% { transform: translateX(6px); }
}

@keyframes nudgeY {
0%,100% { transform: translateY(0); }
50% { transform: translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
.scroll-hint .scroll-icon {
  animation: none !important;
}
}

/* resend code */
.resend-container {
  margin: 0;
  text-align: left;
}

.resend-btn {
  background: transparent;
  border: 0;
  padding: 10px;
  padding-top: 0px;
  font-weight: 600;
  color: #1f4bbd;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .1rem;
  font-size: 11px;
}

.resend-btn[disabled] {
  color: #a8b0bf;
  cursor: not-allowed;
}

.countdown-badge {
  display: inline-block;
  min-width: 48px;
  padding: .15rem .5rem;
  border-radius: 999px;
  font-size: .85rem;
  background: #eef3ff;
  color: #1f4bbd;
  box-shadow: 0 2px 8px rgba(31, 75, 189, .08);
  animation: pulse 1.6s ease-in-out infinite;
}

.resend-btn[disabled] .countdown-badge {
  background: #eef1f6;
  color: #9aa3b2;
  animation: none;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }

  50% {
      transform: scale(1.06);
  }

  100% {
      transform: scale(1);
  }
}