.avaliador-fc-container {
    font-family: sans-serif;
    border: 1px solid #e0e0e0;
    padding: 10px;
}

.jogador-item {
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
}
.jogador-item:last-child {
    border-bottom: none;
}

.jogador-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.jogador-foto img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.jogador-nome-posicao {
    display: flex;
    flex-direction: row; 
    align-items: baseline; 
}

.jogador-nome-posicao .nome {
    font-weight: bold;
    font-size: 1.1em;
}

.jogador-nome-posicao .posicao {
    font-size: 0.9em;
}

.jogador-corpo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notas-info {
    display: flex;
    align-items: stretch; 
    gap: 0;
}

.nota-item {
    text-align: center;
    padding: 0 15px;
    border-left: 1px solid #e0e0e0; 
}

.notas-info .nota-item:first-child {
    border-left: none;
    padding-left: 0;
}

.nota-item .label {
    display: block;
    font-size: 0.8em;
}

.nota-item .valor {
    font-size: 1.6em;
    font-weight: bold;
}

.nota-item.minha-nota .valor {
    color: #cc0000;
}

.area-avaliacao {
    width: 350px;
}

.btn-avaliar {
    background-color: #cc0000;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-avaliar:hover {
    background-color: #a00000;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-container .label-avaliar {
    font-size: 0.9em;
}

.nota-slider {
    flex-grow: 1;
}

.nota-display {
    font-weight: bold;
    font-size: 1.2em;
    width: 40px;
    text-align: right;
}

.nota-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  cursor: pointer;
}

.nota-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #cc0000 0%, #cc0000 var(--value-percent, 50%), #e0e0e0 var(--value-percent, 50%), #e0e0e0 100%);
  border-radius: 5px;
}

.nota-slider::-moz-range-track {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 5px;
}

.nota-slider::-moz-range-progress {
  background-color: #cc0000;
  height: 6px;
  border-radius: 5px;
}

.nota-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #cc0000;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  margin-top: -7px; 
}

.nota-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #cc0000;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  border: none;
}

.nota-slider:focus {
  outline: none;
}

.nota-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px rgba(204, 0, 0, 0.7);
}

.nota-slider:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px rgba(204, 0, 0, 0.7);
}

.avaliador-fc-container[data-status="encerrada"] .btn-avaliar {
  background-color: #cccccc;
  cursor: not-allowed;
}

.avaliador-fc-container[data-status="encerrada"] .minha-nota {
  cursor: default;
}

@media (max-width: 768px) {
  .notas-info {
    align-items: flex-end;
  }

  .nota-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .nota-item .label {
    min-height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}