/* ALT LİSTELERDE KOLON GENİŞLİĞİ MOUSE İLE AYARLANABİLİR */
.table-wrap,
.mm-excel-table-wrap {
  overflow-x: auto !important;
}

table.mb-col-resizable {
  table-layout: fixed !important;
  border-collapse: collapse !important;
}

table.mb-col-resizable th {
  position: relative !important;
  user-select: none !important;
  white-space: nowrap !important;
}

table.mb-col-resizable td {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.mb-col-resizer {
  position: absolute;
  top: 0;
  right: -4px;
  width: 9px;
  height: 100%;
  cursor: col-resize;
  z-index: 20;
}

.mb-col-resizer::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 4px;
  width: 2px;
  background: rgba(245, 214, 107, 0.65);
  opacity: 0.55;
}

.mb-col-resizer:hover::after {
  opacity: 1;
  background: #f5d66b;
  box-shadow: 0 0 8px rgba(245, 214, 107, 0.9);
}

body.mb-col-resizing {
  cursor: col-resize !important;
  user-select: none !important;
}
