.list_of_predictions {
  position: relative;
  display: flex;

  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */

  padding: 15px 0;
  width: 100%;
  margin: 0;
}

/* Each prediction card */
.prediction-card {
  background: #111111d8;
  color: #f2f2f2;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  margin: 20px 0px;
}

.prediction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  background-color: var(#313131);
  /* border: 0.5px solid rgb(190, 75, 75); */
}

/* Fixture row */
.fixture__perd_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 0.8rem;
}

/* Team sides */
.team_wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Team logos */
.team_wrapper img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  /* border: 1px solid rgba(255, 255, 255, 0.15); */
}

/* Team names */
.team_wrapper span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Scores */
.team_wrapper strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* VS text */
.vs {
  font-weight: 600;
  font-size: 1rem;
  color: #ffcc00;
  margin: 0 0.5rem;
}

/* Predictor info */
.prediction_info_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #aaa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  /* background-color: #cc0000; */
}

/* Account/Profile section */
.predictor_profile {
  gap: 0.5rem;
  font-weight: 500;
  color: #ddd;
}

/* Creation time section */
.meta_creation_time {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.meta_creation_time ins {
  text-decoration: none;
  color: #888;
  font-size: 0.8rem;
}

.meta_creation_time span {
  font-size: 0.75rem;
  color: #666;
}

.tournament {
  display: flex;
  align-items: center;
  justify-content: s;

  gap: 0.5rem;
  padding: 5px 10px;
}

.tournament img {
  height: 52px;
}

.predictor_profile {
  display: flex;
  align-items: center;
}

.platform_image img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
/* Responsive */
@media (max-width: 500px) {
  .fixture__perd_list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .team_wrapper {
    justify-content: center;
  }

  .vs {
    margin: 0.3rem 0;
  }
}
