/* line 2, ../sass/_sortable.sass */
table[data-sortable] {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 6, ../sass/_sortable.sass */
table[data-sortable] th {
  vertical-align: bottom;
  font-weight: bold;
}

/* line 10, ../sass/_sortable.sass */
table[data-sortable] th,
table[data-sortable] td {
  text-align: left;
  padding: 10px;
}

/* line 14, ../sass/_sortable.sass */
table[data-sortable] th:not([data-sortable="false"]) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  cursor: pointer;
}

/* line 26, ../sass/_sortable.sass */
table[data-sortable] th:after {
  content: "";
  visibility: hidden;
  display: inline-block;
  vertical-align: inherit;
  height: 0;
  width: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent;
  margin-right: 1px;
  margin-left: 10px;
  float: right;
}

/* line 40, ../sass/_sortable.sass */
table[data-sortable] th[data-sorted="true"]:after {
  visibility: visible;
}

/* line 43, ../sass/_sortable.sass */
table[data-sortable] th[data-sorted-direction="descending"]:after {
  border-bottom-color: var(--the7-accent-color, #007bff);
  margin-top: 8px;
}

/* line 47, ../sass/_sortable.sass */
table[data-sortable] th[data-sorted-direction="ascending"]:after {
  border-bottom-color: var(--the7-accent-color, #007bff);
  margin-top: 3px;
}




#thesen-table {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

#thesen-table-wrapper {
  user-select: none;
  cursor: grab;
}

#thesen-table-wrapper.dragging {
  cursor: grabbing !important;
}

#thesen-table th {
  background: #f8f9fa;
  font-weight: 600;
  padding: 12px 10px;
  border-bottom: 2px solid #e2e6ea;
  color: #222;
}

#thesen-table td {
  padding: 10px;
  border-bottom: 1px solid #e2e6ea;
  background: #fff;
  color: #222;
  font-size: 15px;
}

#thesen-table tr:hover td {
  background: #f1f3f6;
}

#thesen-table tr:nth-child(even) td {
  background: #f7f8fa;
}