.column-manager {
  width: 320px;
  padding: 0;
  background-color: var(--white);

  .header {
    width: 100%;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    background-color: #fbfbfc;
    color: #0c2033;
    box-sizing: border-box;
  }

  .content-wrapper {
    padding: 10px;
  }

  .list-section {
    margin-top: 10px;

    .list-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      font-weight: 500;
      color: #888888;
      margin-bottom: 8px;
      padding: 10px 4px;
    }

    .column-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 8px;
      border-radius: 6px;
      transition: background-color 0.2s ease;
      cursor: grab;

      &:hover {
        background-color: #f5f5f5;
      }

      &.hidden {
        opacity: 0.6;
      }

      .drag-icon {
        cursor: grab;
        margin-right: 14px;
        color: #888;
      }

      .visibility-icon {
        cursor: pointer;
        color: #505050;
      }

      .MuiTypography-root {
        flex-grow: 1;
        font-size: 14px;
        font-weight: 400;
      }
    }
  }
}
