body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
}

.h2h-widget {
  width: 100%;
  max-width: 380px;
  height: 400px; /* 👈 fiksna visina */
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0,0,0,0.08);
  background: #fff;
}

/* Header uvek na vrhu */
.h2h-header {
  background: #004b92;
  text-align: center;
  padding: 8px 0;
  flex-shrink: 0;
}

.h2h-header img {
  height: 28px;
}

/* Skrolabilni deo */
.h2h-body {
  flex: 1; /* zauzima sav preostali prostor */
  overflow-y: auto;
  padding: 10px 14px;
}

/* Footer uvek dole */
.h2h-footer {
  text-align: center;
  padding: 8px;
  font-size: 13px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.h2h-footer a {
  color: #004b92;
  font-weight: 600;
  text-decoration: none;
}

/* --- Stilovi za mečeve --- */

.match {
  padding: 8px 0 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.teams {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 3px 0 4px;
}

.team {
  display: flex;
  align-items: center;
  gap: 4px;
}

.team img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 3px;
}

.team .name {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.vs {
  color: #555;
  font-weight: 500;
}

.desc-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin: 3px 0;
  line-height: 1.3;
}

.desc-line .text {
  color: #444;
}

.desc-line .odd {
  color: #d35400;
  font-weight: 600;
  margin-left: 10px;
  white-space: nowrap;
}

body.small-widget .team .name { font-size:12px; }
body.small-widget .desc-line { font-size:11px; }