body {
  font-family: sans-serif;
  margin: 1rem;
}

h1 {
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  margin-top: 1rem;
}

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

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

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 95%;
  max-width: 900px;
}

.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Charts Grid */
.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.chart_placeholder {
  width: 100%;
  height: 300px;
}

/* Duftpyramide */
.pyramid-icon {
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin: 0 1px 4px 0;
}

.pyramid_block {
  display: flex;
  margin-top: 1rem;
}

.pyramid_block .left {
  flex-basis: 120px;
}

.pyramid_block .right {
  width: 100%;
}

.clickable_note_img {
  display: inline-block;
  padding: 0 6px 12px 0;
}

.notes_list img.np {
  filter: grayscale(.25);
  margin: 0 2px 0 0;
  width: 20px;
  height: 20px;
}

/* Duftbeschreibung: Punkte */
.duftdesc-punkte {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.5rem;
}

.duftdesc-punkt {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #555;
}

.duftdesc-punkt .punkt {
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
}

.punkt-s {
  width: 10px;
  height: 10px;
}

.punkt-m {
  width: 16px;
  height: 16px;
}

.punkt-l {
  width: 22px;
  height: 22px;
}

/* Duftüberschrift */
#duftHeader {
  display: flex;
  align-items: center;
  gap: 10px;
}

#duftHeader i {
  font-size: 1.5rem;
  color: #888;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.bold {
  font-weight: bold;
}