html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ececec;
  font-size: 14px;
}

#wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#details {
  flex: 0 0 auto;
  padding: 6px 10px;
  background-color: #fff;
  border-bottom: 1px solid #a0a0a0;
  box-shadow: 0 1px 2px #aaa;
  font-size: 13px;
  line-height: 1.4;
}

#table-container {
  flex: 1 1 auto;
  overflow-y: auto;
  background-color: white;
  max-height: 300px; /* Zmniejszenie obszaru tabeli */
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
}

th, td {
  border: 1px solid #c0c0c0;
  padding: 6px 10px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

th {
  background: linear-gradient(to bottom, #f0f0f0, #dcdcdc);
  border-bottom: 2px solid #a0a0a0;
  font-weight: normal;
  position: sticky;
  top: 0;
  z-index: 1;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #d0e4f5;
}

tr.active {
  background-color: #b0d4f1 !important;
}
