/* Обёртка для фильтров */
.igraonica-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.igraonica-filters select {
  width: auto;
  min-width: 150px;
  max-width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.igraonica-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.filter-panel {
    flex: 1 1 250px;
    max-width: 250px;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 10px;
    font-size: 16px;
}

.filter-panel label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.filter-panel select {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
}

.map-panel {
    flex: 3 1 600px;
    min-width: 300px;
}

#igraonica-map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
}

#igraonica-map {
    height: 500px;
    margin-bottom: 2rem;
    border-radius: 12px;
}

.igraonica-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-family: sans-serif;
}
.igraonica-table th {
  background-color: #33aa33;
  color: white;
  padding: 12px;
  text-align: left;
  font-size: 16px;
}


.igraonica-table thead th {
    background: #2cbb50;
    color: white;
    padding: 12px;
    text-align: left;
    font-size: 16px;
}

.igraonica-table tbody tr {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
}

.igraonica-table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.igraonica-table td {
    padding: 14px;
    vertical-align: top;
}

.igraonica-table td a {
    color: #1e8cbe;
    font-weight: bold;
    text-decoration: none;
}

.igraonica-table td a:hover {
    text-decoration: underline;
}

.igraonica-table .rating {
    font-size: 1.2em;
    color: #f4b400;
    font-weight: bold;
}

.igraonica-table .details-link {
    color: #27ae60;
    font-weight: bold;
    text-decoration: none;
}

.igraonica-table .details-link:hover {
    text-decoration: underline;
}

.igraonica-room {
  display: flex;
  align-items: center; /* Центрирует по вертикали */
  gap: 15px;
}

.igraonica-room img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.igraonica-room-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}

.igraonica-room-info a {
  font-size: 16px;
  font-weight: 600;
  color: #0073aa;
  text-decoration: none;
}

.igraonica-room-info a:hover {
  text-decoration: underline;
}


.peculiarities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #eafbe7;
  border: 1px solid #b4e2b4;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #256029;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.tag i {
  color: #2e7d32;
}