div.content-wrapper {
  margin-right: 20px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 1.125rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 0.875rem;
  width: 0.875rem;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(0.875rem);
  -ms-transform: translateX(0.875rem);
  transform: translateX(0.875rem);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

div.pages-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 200px;
}
select,
option {
  max-width: 200px;
}

table {
  overflow: hidden;
}

tr {
  height: 32px;
}
tr:hover {
  background: #f0f0f1;
}
td {
  height: 32px;
}
.cell-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.column-src {
  width: 45%;
  max-width: 600px;
}

.pagination-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.per-page {
  display: flex;
  align-items: center;
  gap: 4px;
}

.table-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 20px 0;
  flex-wrap: wrap;
}
.search-container > p {
  margin: 0;
}

div.src-wrapper {
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 782px) {
  .table-toolbar {
    gap: 16px;
  }
  select,
  option {
    max-width: 100% !important;
    flex: 1 !important;
    width: 100% !important;
  }
  .pages-select {
    flex: 1;
    width: 100%;
  }
  .search-container {
    width: 100%;
  }
  #post-search-input {
    margin-right: 0;
    margin-bottom: 0;
  }
  #search-submit {
    margin-right: 0;
    margin-bottom: 0;
  }
  .search-container > p {
    gap: 16px;
  }
  .pagination-section {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.no-results {
  text-align: center;
  margin-top: 4rem;
}
