

#score-section{
    padding: 25px;
    box-sizing: border-box;
    font-size: 1.2rem;


}
.score-info{
    display: grid;
    gap: 5px;
    text-indent: 25px;
}
#score-section a{
    color: lightblue;
}

#score-section h3{
    text-align: center;
}

#score-section {
    padding: 25px;
    box-sizing: border-box;
    font-size: 1.2rem;
}

.score-info {
    display: grid;
    gap: 5px;
    text-indent: 25px;
}

#score-section a {
    color: lightblue;
}

#score-section h3 {
    text-align: center;
    margin: 5px;
}

.score-table {
    display: grid;
    margin-top: 20px;
    padding: 10px;
    background: linear-gradient(to right, rgba(50, 50, 50, 0.7), rgba(60, 60, 60, 0.7));
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%; /* full screen width */
    overflow-x: auto;
    box-sizing: border-box;
}

.ranking-section {
    width: 100%;
}


.ranking-table thead {
    background-color: #333;
    color: #fff;
}



.ranking-table tr.highlight {
    background-color: #444;
    font-weight: bold;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  box-sizing: border-box;
}

.ranking-table td, .ranking-table th {
  padding: 8px 12px;
  border-bottom: 1px solid #444;
  text-align: left;
}

.ranking-table td.time {
  text-align: right;
  white-space: nowrap;
  min-width: 300px;
}

.ranking-table tr.highlight {
  background-color: #444;
  font-weight: bold;
}


.ranking-table td.team-name {
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.ranking-devider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #888, transparent);
  margin: 20px 0;
  width: 100%;
}



#reward-form, #feedback-form{
  margin-top: 25px;
  padding: 20px;
  display: flex;
  flex-direction: column;

  border-radius: 7px;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

  background: linear-gradient(to right, rgba(50, 50, 50, 0.7), rgba(60, 60, 60, 0.7));
}

#reward-form .checkbox-label, #feedback-form .checkbox-label{
  display: flex;
  align-items: center;

}
#reward-form input[type="checkbox"] , #feedback-form input[type="checkbox"]{
  margin-left: 15px;
  width: 30px;
  height: 30px;
}
