.sidebar-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  max-height: 70vh;
  overflow-y: scroll;
  margin-right: -10px;
  /* scrollbar margin */

}

.menu-category {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}

.sidebar-menu li:not(.menu-category) {
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.sidebar-menu li > .icon {
  margin-right: .5rem;
  border-radius: 1rem;
}

.sidebar-menu li:hover:not(.menu-category) {
  background: #f8f9fa;
}

.sidebar-menu li.active:not(.menu-category) {
  background: #fff5f5;
  color: #e31e24;
  font-weight: 600;
}

/* Sağ taraf Tab ve Liste */
.custom-tabs {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 20px;
}

.custom-tabs li a {
  border: none !important;
  color: #666;
  font-weight: 600;
}

.custom-tabs li.active a {
  color: #e31e24 !important;
  border-bottom: 3px solid #e31e24 !important;
  background: transparent !important;
}

.list-container {
  border-radius: 12px;
  min-height: 500px;
}

.hide-toolbar .view-toolbar {
  display: none;
}

.view-grid {
  background: #fff;
  border-radius: 12px;
  padding: 5px 0px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.entitylist {
  border: unset;
}

.entitylist table thead tr th:nth-child(0),
.entitylist table tbody tr td:nth-child(0) {
  padding: 0px 16px;
}

.input-group-addon:first-child {
  display: none;
}

.input-group-addon~select {
  background: url(https://img.icons8.com/material/24/expand-arrow--v1.png) no-repeat right #000;
  appearance: none;
  -webkit-appearance: none;
  background-position-x: calc(100% - .5rem);
  padding-right: 1.25rem;
  text-overflow: ellipsis;
  border: 1px solid #ccc;
  border-radius: .25rem;
  border-top-left-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}

.entitylist-filter-option-group-label {
  font-size: 16px;
  font-weight: 600;
}

#entitylist-filters {
  display: flex;
  align-items: flex-end;
}

.search-button {
  background: url(https://img.icons8.com/material-sharp/24/FFFFFF/search.png) no-repeat right #fff;
  background-position-x: .5rem;
  /* padding-left: 3rem; */
  background-color: var(--portalThemeColor1);
  border: unset;
  padding: .5rem 2rem;
  padding-left: 4rem;
  border-radius: .25rem;
  color: #fff;
  width: auto;
  height: 35px;
  margin-left: 1rem;
  white-space: nowrap;
}

.search-box {
  background: url(https://img.icons8.com/material-sharp/24/search.png) no-repeat right #000;
  background-position-x: calc(100% - .5rem);
  padding-right: 3rem;
}