table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 1rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

thead {
  background-color: #f5f5f5;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tr:nth-child(even) {
  background-color: #fafafa;
}

tr:hover {
  background-color: #f1f1f1;
}

th {
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
}


@media screen and (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 1rem;
  }

  td {
    position: relative;
    padding-left: 50%;
    text-align: right;
  }

  td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
    color: #666;
  }
}

.banner-section {
  background: transparent 
              url("../images/banners/background.png") 
              no-repeat top center;
  background-size: 100% auto;
  display: block;
}


.floating-banner {
  display: none; /* скрыт по умолчанию */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 20px;
  z-index: 9999;
}

.floating-banner.show {
  display: block;
  animation: slideUp 0.5s ease-out forwards;
}

.banner-img {
  width: 100%;
  display: block;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 10000;
}

/* Анимация появления */
@keyframes slideUp {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}


