.attributes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  color: #333;
}

.attributes-table tbody td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

/* První sloupec – popis/label */
.attributes-table tbody td:first-child {
  font-weight: 700;
  color: #222;
  white-space: nowrap;
  width: 35%;
}

/* Střídavé řádky */
.attributes-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover efekt */
.attributes-table tbody tr:hover {
  background-color: #fff7ed;
}

/* Responsivní: na malých obrazovkách stack layout */
@media (max-width: 480px) {
  .attributes-table tbody tr {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #e5e7eb;
  }

  .attributes-table tbody td {
    padding: 0.5rem 0.875rem;
    border-bottom: none;
    width: 100%;
  }

  .attributes-table tbody td:first-child {
    background-color: #f3f4f6;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.25rem;
  }
}
