/* Existing styles for sortable header and sort indicator */
.sortable-header {
  cursor: pointer;
  display: flex;
  align-items: center;

  &:hover {
    background-color: #f3f3f3;
  }
}

.sort-indicator {
  margin-left: 5px;
}

/* New styles for header container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Styles for header content */
.header-content {
  color: var(--Gray-600, #475467);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

/* Styles for drag handle */
.drag-handle {
  cursor: grab;
  padding: 0 5px;

  &:active {
    cursor: grabbing;
  }
}

/* Styles for resize handle */
.resize-handle {
  cursor: ew-resize;
  padding: 0 5px;
}

// ========================================
// Media Queries
// ========================================
// Adjusting desktop screens
@media (min-width: 1024px) {
}
// Adjusting  for tablet screens (between small tablets and desktops)
@media (max-width: 1023px) {
  .header-content {
  }
}
// Adjusting for smaller screens (small tablets and mobile)
@media (max-width: 768px) {
  .header-content {
  }
}
// Adjusting  for smaller screens (mobile)
@media (max-width: 480px) {
  .header-content {
  }
}
