@charset "UTF-8";

.jogos{
    max-width: 850px;
    margin-inline: auto;
    padding: 2em;
}
.titulo{ margin-bottom: 1em;}
h2 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 30px;
      padding-block: 1em;
}
h2 img {
    width: 25px;
    height: 25px;
}
.loading, .empty {
    font-size: 1.1em;
    font-style: italic;
    margin: 10px 0;
    color: #666;
    }
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #333;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
    }
@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
    }
.table-container {
    max-height: 400px;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 40px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    background: #fff;
    }
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #d5d5d5;
}
th {
    background: #333;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
    }
tr {
    cursor: pointer;
    transition: background 0.2s;
&:hover {background: #f0f0f0;}
}
.confronto {
    line-height: 1.65em;
    text-align: center;
}
.confronto img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    }
.badge-previsto {
  background-color: #4CAF50;
  color: white;
  font-size: 0.8em;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
}

@media screen and (min-width: 600px) {
    .confronto{
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.5em;
    }
    .confronto br{
        display: none;
    }
    strong{margin-inline: 10px;}
}