.pars-page-baslik {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: 30px;
	font-weight: 500;
	font-size: 16px;
}
.pars-page {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: 30px;
	margin-top: 20px;
}
.pars-page p {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 27px;
}
.pars-page p:last-child {
	margin-bottom: 0;
}
.pars-page h2,.pars-page h3,.pars-page h4,.pars-page h5,.pars-page h6 {
  font-weight: 500;
  margin: 20px 0;
  font-size: 16px;
  border-left: 2px solid var(--primary);
  padding: 5px 10px;
}
.pars-page img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-img);
}
.pars-page iframe {
	border: none;
}

.pars-page-iletisim-form {
    margin-top: 20px;
    position: relative;
}
.pars-page-iletisim-form label {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--dark);
}
.pars-page-iletisim-form input {
    border: 0 none;
    border-radius: var(--border-radius);
    height: 50px;
    font-size: 14px;
    color: var(--dark);
    padding: 0 20px;
    background-color: var(--white);
    border: 1px solid var(--bg-dark);
}
.pars-page-iletisim-form input:focus {
    border-color: var(--primary);
    box-shadow: none;
}
.pars-page-iletisim-form textarea {
    min-height: 160px;
    color: var(--dark);
    border: 0 none;
    border-radius: 6px;
    resize: none;
    padding: 15px;
    font-size: 14px;
    background-color: var(--white);
    border: 1px solid var(--bg-dark);
    line-height: 1.5;
    padding-left: 30px;
    padding-top: 20px;
}
.pars-page-iletisim-form textarea:focus {
    border-color: var(--primary);
}
.pars-page-iletisim-form label {
    position: absolute;
    top: -11px;
    left: 20px;
    pointer-events: none;
    z-index: 4;
    background: var(--white);
    padding: 0 10px;
}
.pars-page-iletisim-form input, textarea {
    transition: all .4s ease-out 0s;
    width: 100%;
}
.pars-page-iletisim-form input:focus, .pars-page-iletisim-form input:active, .pars-page-iletisim-form textarea:focus, .pars-page-iletisim-form textarea:active {
    outline: none;
}

.nova-burc-tablo tbody tr td {
    text-align: left !important;
}
.nova-burc-tablo-bilgi {
    font-weight: 500;
}
.pars-page table {
    width: 100%;
    border: 1px solid var(--bg-dark);
    caption-side: bottom;
    border-collapse: collapse;
}
.pars-page tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}
.pars-page tbody tr {
    border-bottom: 1px solid var(--bg-dark);
}
.pars-page tbody tr td:last-child {
    border-right: none;
}
.pars-page tbody tr td {
    padding: 12px 20px;
    text-align: center;
    border-right: 1px solid var(--bg-dark);
}
.pars-page select {
    width: 100%;
    height: 50px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--bg-dark);
    padding: 0 10px;
    color: var(--dark);
    transition: all .4s ease-out 0s;
    font-size: 14px;
}


.pars-hesaplama-burc-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.pars-hesaplama-burc-row input {
    border-radius: var(--border-radius);
    border: 1px solid var(--bg-dark);
    background: transparent;
    color: var(--dark);
}
.pars-page label {
    font-size: 14px;
    color: var(--dark);
}
.pars-hesaplama-burc-input,
.pars-hesaplama-burc-button {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  box-sizing: border-box;
}

.pars-hesaplama-burc-button {
  cursor: pointer;
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
  border: none;
  border-radius: var(--border-radius);
  transition: background 0.3s ease;
}

.pars-hesaplama-burc-button:hover {
  background-color: #333;
}

.pars-hesaplama-burc-sonuc {
  margin-top: 15px;
  font-weight: 500;
  color: var(--dark);
}
.nova-burc-tablo {
    font-size: 14px;
}


.pars-kunye-baslik {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background: var(--white);
    margin-bottom: 20px;
    padding: 20px;
}
.pars-kunye-baslik h1 {
    font-size: 16px;
    font-weight: 500;
}
.pars-kunye ul {
    padding: 0;
    list-style: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background: var(--white);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    overflow: auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.pars-kunye ul li {
    display: inline-block;
}
.pars-kunye li {
    border-bottom: 1px solid var(--bg-dark);
    margin: 0 !important;
    padding: 20px !important;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 100%;
}
.pars-kunye li:last-child {
    border: none;
}
.pars-kunye .pars-kunye-container {
    font-size: 14px;
}
.pars-kunye span.pars-kunye-icon {
    position: absolute;
    top: 35px;
    right: 30px;
}
.pars-kunye .pars-kunye-isim, .pars-kunye .changes {
    vertical-align: middle;
    display: inline-block;
}
.pars-kunye span.pars-kunye-isim {
    font-size: 14px;
    margin-right: 5px;
    display: block !important;
    font-weight: 600 !important;
}


/* ARSE PUAN DURUMU KODU BAŞLA */
.arse-puan-tablosu-wrapper {
  padding: 20px;
  font-size: 14px;
  margin-top: 20px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--box-shadow);
}
.arse-puan-tablosu {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.col-p {
  font-weight: 500;
}
.col-takim {
  text-align: left !important;
  font-weight: 500;
}
.arse-puan-tablosu th,
.arse-puan-tablosu td {
    padding: 8px;
    text-align: center;
    line-height: 40px;
    border-bottom: 1px solid var(--bg-dark);
}
.arse-puan-tablosu th {
  height: 45px;
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
}
.arse-puan-tablosu tbody tr:hover {
  background-color: var(--bg-dark);
  transition: background-color 0.2s ease;
}

.arse-puan-tablosu td:first-child {display: block; border-left: 3px solid var(--bg-dark);}
.arse-puan-tablosu td:last-child {display: block; border-right: 1px solid var(--bg-dark);}
.arse-puan-tablosu tr.cl td:first-child {display: block; border-left: 3px solid #007bff;}
.arse-puan-tablosu tr.cl-qual td:first-child { display: block; border-left: 3px solid #80bdff;}
.arse-puan-tablosu tr.europa td:first-child {display: block; border-left: 3px solid  #ffc107;}
.arse-puan-tablosu tr.konferans td:first-child {display: block; border-left: 3px solid  #27af5e;}
.arse-puan-tablosu tr.relegation td:first-child { display: block; border-left: 3px solid  #dc3545;}

.arse-puan-aciklama  {
  padding: 20px;
  font-size: 14px;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--box-shadow);
}
.arse-puan-aciklama .etiket {
    display: inline-block;
    width: 20px;
    height: 10px;
    margin-right: 8px;
    vertical-align: middle;
    background: #007bff;
}
.pars-puan-durumu-kartlar {
    background: var(--white);
    padding: 20px;
    margin-top: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: grid;
    gap: 10px;
}
}
.arse-puan-aciklama .cl { background: #007bff; }
.arse-puan-aciklama .cl-qual { background: #80bdff; }
.arse-puan-aciklama .europa { background: #ffc107; }
.arse-puan-aciklama .konferans { background: #27af5e; }
.arse-puan-aciklama .relegation { background: #dc3545; }
.arse-puan-baslik {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--box-shadow);
}
.arse-puan-baslik h1 {
  font-size: 16px;
  font-weight: 500;
}
.arse-puan-son-guncelleme {
  font-size: 13px;
}
.takim-logo {
    width: 25px;
    height: 25px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}
.arse-guncelle {
  margin-top: 20px;
}
.arse-puan-guncelle-btn {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 50px;
  border: none;
  color: #fff;
  background: var(--dark);
  border-radius: var(--border-radius);
}
.arse-puan-guncelle-btn:hover {
  background: var(--primary);
}
@media screen and (max-width: 768px) {
    .col-g,
    .col-b,
    .col-m,
    .col-a,
    .col-y,
    .col-av {
      display: none;
    }
    .arse-puan-baslik {
      display: block;
    }
}
.arse-kart-icerik {
  background: #f3f4f6;
  border-radius: var(--border-radius);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.arse-kart-sol {
  display: flex;
  align-items: center;
  gap: 10px;
}

.arse-kart-sol img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 37px;
    background: #fff;
    padding: 9px;
}

.arse-kart-sol span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.arse-kart-sol small {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  display: block;
  opacity: 0.85;
}


/* Renk temaları */
.arse-sampiyon {
  background-color: #007bff;
}
.arse-eleme {
  background-color: #80bdff;
}
.arse-avrupa {
  background-color: #ffc107;
}
.arse-konferans {
  background-color: #27af5e;
}
.arse-kume {
  background-color: #dc3545;
}

.arse-kart i {
  font-size: 16px;
  color: #fff;
}

/* ARSE PUAN DURUMU KODU BİTTİ */

/* ARSE FİKSTÜR KODU BAŞLA */
  .arse-fikstur-wrapper {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .arse-fikstur-title {
    text-align: center;
    color: #222;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
  }

  .arse-fikstur-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
  }

  .arse-fikstur-thead {
    background-color: #0077cc;
    color: #fff;
  }

  .arse-fikstur-table th,
  .arse-fikstur-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
  }

  .arse-fikstur-table tr:hover {
    background-color: #f5faff;
  }
  @media screen and (max-width: 768px) {
    .arse-fikstur-table,
    .arse-fikstur-thead,
    .arse-fikstur-tbody,
    .arse-fikstur-table th,
    .arse-fikstur-table td,
    .arse-fikstur-table tr {
      display: block;
      width: 100%;
    }

    .arse-fikstur-thead {
      display: none;
    }

    .arse-fikstur-table tr {
      margin-bottom: 15px;
      background: #fafafa;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 10px;
    }

    .arse-fikstur-table td {
      text-align: left;
      padding: 8px 12px;
      position: relative;
    }

    .arse-fikstur-table td::before {
      content: attr(data-label);
      font-weight: bold;
      display: block;
      margin-bottom: 4px;
      color: #666;
    }
  }
/* ARSE FİKSTÜR KODU BİTTİ */
