/* ===== ACORDEON ===== */



.accordion {
  width: 100%;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  background: #fff;
margin-top:0px;
}

.accordion-header {
  cursor: pointer;
  padding: 5px 0;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: #f7f7f7;
}

/* Smooth animation */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fff;
}

/* ===== MATCH ROW ===== */
.match-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
}

/* Gazda: nume → stemă */
.team-left {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  width: 40%;
  text-align: right;
}

/* Oaspete: stemă → nume */
.team-right {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  width: 40%;
  text-align: left;
}

.logo-echipe {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.team-name {
  font-size: 16px;
  font-weight: 600;
}

.score {
  width: 20%;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

/* ===== GRID GOLURI ===== */
.goluri-grid {
	display: grid;
	grid-template-columns: 1fr 40px 1fr;
	padding: 5px;
	gap: 10px;
	font-size: 12px;
	line-height: 14px;
	margin-top: -20px;
	vertical-align: middle;
}

.goluri-gazde {
  line-height: 18px;
  text-align: right; /* Gazdele orientate spre minge */
}

.goluri-oaspeti {
  line-height: 18px;
  text-align: left;
}

.goluri-ball {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== BARE COLORATE ===== */
.date-meci {
	background: #0057b7;
	color: #fff;
	padding: 8px;
	text-align: center;
	font-size: 14px;
	word-spacing: 2px;
	letter-spacing: 1px;
}

.arbitrii-obs {
  background: #0a4baf;
  color: #fff;
  padding: 8px;
  font-size: 14px;
  text-align: center;
word-spacing: 3px;
	letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {

  .team-name {
    display: none; /* doar steme + scor pe mobil */
  }

  .logo-echipe {
    width: 32px;
    height: 32px;
  }

  .score {
    font-size: 18px;
    width: 30%;
  }

  .goluri-grid {
    font-size: 12px;
  }

  .date-meci,
  .arbitrii-obs {
    font-size: 12px;
  }
}
.baraTitle {
    background-color: #e70101;
    min-height: 45px!important;
    color: #FFFFFF;
    padding-top: 3px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 3px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 1px;
    font-family: "Inter Regular",sans-serif;
}

/* === PATCH ANTI-BOOTSTRAP & ANTI-STYLE.CSS === */

.table-clasament {
    display: table !important;
    width: 100% !important;
    white-space: normal !important;
}

.table-clasament td,
.table-clasament th {
    white-space: normal !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

