// Table Footer (Mapped to TableFooter component)
.table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9; // Lightened the background
  border-top: 1px solid #ccc;
  padding: 10px;

  &__page-number-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  // Specific styling for pagination controls
  .pagination-controls {
    display: flex;
    align-items: center;

    button {
      margin: 0 5px;
      padding: 5px 10px;
      background-color: #f1f1f1;
      border: 1px solid #ccc;
      border-radius: 4px; // Added rounded corners
      cursor: pointer;

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

      &:disabled {
        cursor: not-allowed;
        opacity: 0.5;
      }
    }

    input[type='number'],
    select {
      margin-left: 10px;
      padding: 5px;
      border: 1px solid #ccc;
      border-radius: 4px; // Added rounded corners
    }
  }

  // Specific styling for row count display
  .row-count {
    font-size: 14px; // Increased font size
    strong {
      margin-right: 5px;
    }
  }
}
